use record edit form component to create a form that’s used to add a Salesforce record or update fields in an existing record on an object. The component displays fields with their labels and the current values and enables you to edit their values. lightning record edit form supports the following features. Editing a record’s specified […]
Aura
Salesforce Aura related
Salesforce Aura Component Map, Dynamic picklist / dropdown
Component markup Controller/Helper Java script var upOptions = [{ label: ‘Please Select’, value:” }]; upOptions.push({ label: ‘Account Upload’, value:’Account Upload’ }); cmp.set(“v.uploadOptions”, uploadOptions);
Salesforce Aura Component Refresh View
To refresh a view in both custom and standard component use below $A.get(‘e.force:refreshView’).fire();Ex: From the below table Child details are multiple child records, when adding/deleting/updating child records costs Parent summary table top one should get update with totals. This can be done with simple refresh call which will update parent.