3.2.0

Header OnClick Event

I would like to override the onclick sorting funtionality of the grid so that I can tie in my own code when the user clicks the column header.

JonLees@Yahoo.com
Jonathan Lees
November 16,
You can use:
obj.onHeaderClicked = function(event, index){  
alert(index);
return true; // cancel default handler  
}

Carlos
November 16,

This topic is archived.

See also:


Back to support forum