I have a table with filtered results.
I need to update all rows "Payé" of the table in a client script.
I know how to update the first active row of the field "Payé". But I need to update all the row of that field in one time (in a call back function)
Can you help me.
Here is the screen shot of what I need
Thanks
This should do the trick:
var rows = app.datasources.TABLE_NAME.items;
for(var i = 0; i < rows.length; i++){
rows[i].Paye = true;
}