I have a RadGrid and something strange seems to be happening with my Javascript when I have UseStaticHeaders set to TRUE.
I have the following line of Javascript:
If UseStaticHeaders = FALSE, orgIdCell is populate and there are no problems.
If UseStaticHeaders = TRUE, orgIdCell comes back as NULL.
Why?
is there a workaround?
I need to use orgIdCell to access the innerText propery of a cell in the grid.
I am setting UseStaticHeaders and AllowScrolling to True/False in c# based on some conditions and other button clicks.
It seems that if both UseStaticHeaders and AllowScrolling are set to True, this issue occurs. If only one or the other are set to TRUE, this issue does not happen.
Thanks,
Dave
I have the following line of Javascript:
var
orgIdCell = rgUsers.MasterTableView.get_dataItems()[i].get_cell("OrgIDColumn");
If UseStaticHeaders = FALSE, orgIdCell is populate and there are no problems.
If UseStaticHeaders = TRUE, orgIdCell comes back as NULL.
Why?
is there a workaround?
I need to use orgIdCell to access the innerText propery of a cell in the grid.
I am setting UseStaticHeaders and AllowScrolling to True/False in c# based on some conditions and other button clicks.
It seems that if both UseStaticHeaders and AllowScrolling are set to True, this issue occurs. If only one or the other are set to TRUE, this issue does not happen.
Thanks,
Dave