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
My OwnMy Own 

Reg: Repeater inside a PageBlockTable

 

 

Hi All, 

 

I have a problem with command button action, Parameters  inside a repeater which is inside a pageblockTable.

Parameter values are not getting the values which was assigned in repeater.  Its like grid inside a grid control. 

 

any help would be greatly appreciated. 

 

Thanks in advance. 

Pradeep_NavatarPradeep_Navatar

You can invoke action function on the click of command button and bind the parameters with that :

 

  <apex:repeat>

         <input class="btn" value="save"/>

  </apex:repeat>

  <apex:actionFunction action="{!doSave}" reRender="opnl" oncomplete="alert('Name has been changed')" />

  <apex:param assignTo="{!propviewdata}" value=""/>

 

Hope this helps.