Inline Edit And Custom Lightning Components
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0juErkmXdNPI7M40Aad5LEwiezLFz6nW6IitW1gmAhGia0yN2VmMTtHDmjTl7MpvNup8GMlOKVZcmy7rRAdBJbVYtDx33WCE0c0Q99kyLjHYrhIV9KEAcmm2rwg_wOnBowenOVUnAlhY/s640/Screenshot+%2528220%2529.png)
Inline Editing lets users quickly edit field values, right on a record's detail pages. Below are the Custom Lightning Components support Inline Editing. Apex Controller: public class InlineEditController { @AuraEnabled public static List <account> fetchAccount() { List <Account> lstOfAccount = [select id, Name, Rating, website from account LIMIT 5]; return lstOfAccount; } @AuraEnabled public static List <account> saveAccount(List<Account> lstAccount) { update lstAccount; return lstAccount; } @AuraEnabled public static List < String > getselectOptions(sObject objObject, string fld) { system.debug('objObject --->' + objObject); system.debug('fld --->' +...