Use case:
Define an array of rows on a model given 2 conditions then update rows with value ‘myValue’
For given conditions:
ApptID__c = XXXX
DateA > DateB
$.each(myModel.data, function (i, row){
myModel.updateRow(row,myField, myValue);
});
How do I limit the rows based on my conditions?
Question
Define $.each for a model based on filter criteria
This topic has been closed for replies.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

