This question is locked. New answers and comments are not allowed.
When my grid is grouped, getting cell values in client select is not returning a value for the 0th cell. When not grouped it works fine. Is there a way to get cell values by cell name? Or is there some other way to get a cell value in a grouped grid?
var UserId = e.row.cells[0].innerHTML;//THIS RETURNS EMPTY WHEN GROUPED
var UserId = e.row.cells["UserId"].innerHTML;//CAN I GET CELL VALUE BY NAME???