This is my code:
Code: Select all
tables.EMPLOYEES_REPORT_OFFICELICENSES.fetchTable();
var allOfficeLicenses=tables.EMPLOYEES_REPORT_OFFICELICENSES;
var rows=allOfficeLicenses.getRows();
while(rows.next()) {
if (allOfficeLicenses.OFFICELICENSECOUNT.value > 1) {
allOfficeLicenses.FULLNAME.columnControl.setBackgroundColor("yellow");
}
}
I do this exact same thing on another form with the only difference being that I am referencing a different table. I have verified that the resource has just over 100 rows returned.
Why would it say that columnControl is null ?