3.2.0

onSort Event

Does the Grid have an onSort event and how can i use it?
Nick
August 2,
bump
September 15,
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
September 19,
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
September 20,

This topic is archived.

See also:


Back to support forum