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
kannapapikannapapi 

Pass apex:repeat value to controller

Hi,
i want to pass apex:repeat value to the controller..is there anyway?
<apex:repeat value="{!projectRolls}" var="r"> 
       <li class="{!r}">   {!r.Name__c}
        </li>
</apex:repeat>

here, i want  to pass {!r.Name__C} to controller.. how to do that?
Balaji BondarBalaji Bondar
Hi kannapapi,

You might have defined projectRolls as property in the controller{get;set;}.The value can be accessed using this property.