I am using SmartClient_v111p_2017-07-03_LGPL in IE11.
I have not been able to determine how to change the Header text of a field in a listgrid. I have tried:
The program detect the change, but the change is not displayed
I have not been able to determine how to change the Header text of a field in a listgrid. I have tried:
Code:
lg.header.buttons[0].title = (check ? 'Deselect All' : 'Select All'); lg.getFields()[0].title = (check ? 'Deselect All' : 'Select All'); lg.refreshCell(-1, 0);
Comment