Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function onCellFocus(cell, rowIndex) {
  2.  
  3. // first clear selection
  4. grid.selection.clear();
  5.  
  6. // select the focused row
  7. grid.selection.setSelected(rowIndex, true);
  8.  
  9. // invoke manually the render method
  10. grid.render();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement