+ 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.