3.2.0

Cancelling "sorting"?

How can i cancel "sorting"?
adrien
January 6,
The way I'm doing it:

obj.setProperty("selection/index", -1)
obj.setDataProperty("text", function(i, j){return OrigMyData[i][j]});
obj.refresh();
Jeremy
May 3,
Oops, actually:

obj.setProperty("selection/index", -1)
obj.setRowProperty("count", origLength);
obj.setDataProperty("text", function(i, j){return origMyData[i][j]});
obj.refresh();
Jeremy
May 3,

This topic is archived.

See also:


Back to support forum