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
mohit Srivastavamohit Srivastava 

How to display a text on button click wrap with a wrapper list

hi ,
I have to implement a functionality where i have to show a text next to button and button are wrap with a wrapper list , The problem i am facing is that when i click on button of the wrapper list a text shown  next to all the button and i have to show text next button i have clicked ,I am using apex support function with param but it don't work.


<apex:actionsupport event="onclick" action="{!controllerMethod}" status="actStatusId">
<apex:param name="Selected" assignTo="{!config}" value="Configured" >
</apex:actionsupport>
<apex:pageblockSectionItem > <apex:outputText value="{!myText}" style="color:green" id="MI"/>
</apex:pageblockSectionItem>