While looping through the rows of an IG I want to be able to programmatically check row selector for a row where another column's value 'Test'. If it equals something else, I want to uncheck it. Is that possible?
I have something like that:
var model = this.data.model;
var records = this.data.selectedRecords;
if (records.length > 0) {
for (i = 0; i < records.length; i++) {
test_var = model.getValue (records[i], "FIELD1");
if(test_var=== 'Test'){
//check the row_selector here
}
}
}