function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rajat Modi 7Rajat Modi 7 

Assignto not working, unable to assign a value to controller variable inside a page block table

Hi Guys,

I am trying to edit a pageblock table using a commandline button, I want to edit a particular row only inside a page block, however my assignTo is not working somehow
 
<apex:column>
                <apex:commandLink reRender="DetailPanel,EditPanel" onclick="EditEnable()"  type="image/png">
                    <apex:image value="{!$Resource.PencilImage}"/>
                    <apex:param name="CurrentRecordId" assignTo="{!CurrentRecordId}" value="{!acc.Id}"/>
                      </apex:commandlink>
                    </apex:column>