
Dharmvir Patel
Individual-
Jay replied to the discussion Editing a record from selecting list of record using radio button in the forum Salesforce® Discussions 6 years ago
Reply to Editing a record from selecting list of record using radio button
Hi Aman,
main concern is below line is calling the action method edit i.e. goToEdit
after selection of radio button
<apex:actionSupport event=onclick” action="{!goToEdit}">
and I am not using any sObject layout, I am taking Id from VF page in controller action method and fetching that particular record for edit operation.
-
Jay replied to the discussion Editing a record from selecting list of record using radio button in the forum Salesforce® Discussions 6 years ago
Reply to Editing a record from selecting list of record using radio button
Hi Aman
VF and Controller code is mentioned below
<apex:page Controller="ContactCustomController" >
<apex:pageBlock title="contact List">
<apex:form >
<apex:pageBlockTable value="{!contacts}" var="con">
<apex:column headerValue=" Name" value="{!con.Name}"/><apex:column headerValue="Select">
<input type="radio"… Read more -
Jay started the discussion Editing a record from selecting list of record using radio button in the forum Salesforce® Discussions 6 years ago
Editing a record from selecting list of record using radio button
Hi,
I am trying display list of record of any Sobject ( ex-Contact) with radio button corresponding to each record on a page. And once I select a radio button that particular record should open in another page with where I can edit and save. But problem is after selecting a particular record a record button I am not able to call an… Read more
-
Jay became a registered member 6 years ago