I have an apex class which returns a list of sObject and i am creating a row to a UI only model. I want to create the row with salesforce Id which is returned from myList. How can I achieve that?
Below is my code.
$.each(myList,function(i,row){
var row1 = model.createRow({
additionalConditions: [
{ field: ‘Id’, value: row.Id},
]
});
});
Question
create rows for UI only model with salesforce Id.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
