Select / Focus Cell Using Slickgrid
How can I set the focus (or at least highlight) to a specific cell using SlickGrid, given that I have cell and row number? Use case behind is that I have a grid which creates an aj
Solution 1:
grid.setActiveCell() and grid.focus()
Solution 2:
grid.gotoCell() worked for me better, as grid.setActiveCell() wasn't setting the field to an editable state.
Post a Comment for "Select / Focus Cell Using Slickgrid"