Hello, I need to know if a row is selected when I refresh the grid.
I have this in "createdRow" event:
createdRow: function (row, data, dataIndex) {
console.log(row);
console.log($(row).hasClass('selected'));
}
I can see that the TR has the class "selected" in it, however, the hasClass method returns false. How can I do it?
Thanks
Jaime