HI,
I wonder if anyone could help me with that.
I have this snippet that i want to use as Row Action to clear a Date field’s value
But not really sure how to get it to work on current row from which i clicked the action
This work well for 1st record of a table or on a detail page. But not on any row after the first one
I Understand it’s because of ‘model.getFirstRow()’ but looking at the model api documentation, I could not find what I should use instead
var $ = skuid.$, model = skuid.model.getModel('AccountTab'),<br> row = model.getFirstRow();<br>model.updateRow(row, {Favorite_date__c:''});
Thank you