3.2.0

Selecting row on clicking the row header

Hi,

I was wondering is it possible to select a row (or multiple rows) by clicking the row header(s).

Thanks for your help in advance!
Misso
May 16,
Misso,

Did you ever get a reply or find a solution to your question?
Scoop
November 29,
Scoop, this shall do it perfectly, except to deselect a line, but this is trivial so I leave it up to you... All this is documented in grid.htm in quickref folder!

obj.onSelectorMouseDown= function(event, index)
{
var selectedRows = obj.getSelectedRows();
selectedRows.push(index);
obj.setSelectedRows(selectedRows);
};
Paul
November 29,

This topic is archived.

See also:


Back to support forum