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
Samrat ChakrabortySamrat Chakraborty 

I have created Jquery Tabs which calls same function. I am unable to pass parameter based on selected tab

Hi,
I had to create dynamic tabs whici would be calling the same function to display the body. I achieved it using Jqurey tabs. But now the problem is I am not able to pass the tab id to a apex controller function. I am using 
<apex:actionRegion >
    <apex:actionFunction name="getRolloutRecord" action="{!retrieveFinancialTable}" reRender="dataTable"   >
     <apex:param name="rolloutId" assignTo="{!rolloutId}" value="{!projectRollout[1].Id}"/>
     </apex:actionFunction>
 </apex:actionRegion>
<apex:repeat value="{!projectRollout}" var="r"> 
    <li class="{!r}" onclick="getRolloutRecord()">{!r.IPM_Rollout_Project__c}</li>
</apex:repeat>
Instead of {!projectRollout[1].Id} i would have liked to pass {!projectRollout.Id}. So that based on the selected tab I get my Id and rest the data is loaded as per the tabs.
Please help its very urgent