:: Forum >>

onSort Event

Does the Grid have an onSort event and how can i use it?
Nick
Tuesday, August 2, 2005
bump
Thursday, September 15, 2005
I second Nick's question - when a user clicks the column header, I want the page to reload. I don't want it to sort the column. Is there any way to accomplish this?
Lukas
Monday, September 19, 2005
Hello,

just put this into your js-file:

var _sort = obj.sort;

obj.sort = function (index, direction)
{
if (notToBeSorted)
{
return;
}
else
{
_sort.call(this, index, direction);
}
}

Gernot
Tuesday, September 20, 2005

This topic is archived.


Back to support forum

Forum search