I have a bit of javascript that selects the first row in the grid when the page loads (to trigger a subsequent load). When I have frozen columns enabled and I select the first row (in the DataBound handler) the unlocked rows are highlight properly, but the locked column portion of the row is not (see attached). Here is the javascript snippet:
Selection works perfectly, other than the row style not being applied. Thanks!
var
grid = $(pipelineForecastGridId).data(
"kendoGrid"
);
var
item = grid.tbody.find(
"tr:first"
);
grid.select(item);
Selection works perfectly, other than the row style not being applied. Thanks!