Select all rows in table

is there any option to select all rows ?
eg : click on top cell left row (on header) checkbox to select all the rows in table’

i found following http://jsfiddle.net/D4Kx3/5/ but doesn’t seem to be working…

We have already discussed this subject in our emails with @gangadhar.mali but for all users who are interested in the same subject, please check this demo: http://jsfiddle.net/7vjgjLah/

It uses the selectCell() method with 4 parameters: row, col, endRow and endCol as:

hot.selectCell(0,0, hot.countRows() - 1, hot.countCols() - 1)

to select whole range of cells in table.

1 Like