-
How to use apex:actionsupport such that it only saves the last radiobutton in repeat in Salesforce?
I build a radiobutton within a repeat of a list and then use actionsupport with event set to "onchange".
Example,
<apex:outputPanel id="repeating">
<apex:repeat value="{!change}" var="c">
<apex:selectRadio value="{!save}">
<apex:selectOption itemValue="{!c}" itemLabel="{!c}" />
</apex:selectRadio>
</apex:repeat>
<apex:actionSupport event="onchange" reRender="repeating" action="{!saveInformation}">
</outputPanel>However, this code only work on the final/last button. What I wanted it to do is to be able to save more than 1 button and any button that is changed. My current code only work on example;
button 1 *when pressed, nothing happen*
button 2 *when pressed, nothing happen*
button 3 *when pressed, this button can be saved*I wish it to be able to save any pressed buttons and also able to take more than 1 buttons to save.
Is there a way to alter my code or should I make any changes?
Log In to reply.
Popular Salesforce Blogs
Best Practices for Salesforce Data Migration
Conducting data migration from or into Salesforce can be time-consuming but a necessary task. Data migration is a challenge for any enterprise. You might face…
2020 Branding Guidelines for Partners in the Salesforce Ecosystem
The Salesforce Partner Program gives the opportunity to its partners to build and grow successful businesses while delivering customer success. With this program, Independent Software…
Popular Salesforce Videos
How to Create Custom Field in Lighting Experience | Salesforce
Fields you create on standard or custom objects are called custom fields. You can create a custom field on the Contact object to store your…
How relationship works in Salesforce?
In this video, following things have been explained: How to create relationships in Salesforce? What is the need of relationship between two objects in Salesforce?…
What are lookup filters in Salesforce?
In this video, we will leaarn about Lookup Filters in Salesforce by dividing this topic into 4 basic points, which are: 1. What is a…