3.2.0

sort off

I know I should be able to turn the sorting of the grid off, but I can't find any docs on this topic.
Can anybody tell me how this done?
lw
November 21,
Nevermind everyone, I got it.
lw
November 21,
feel free to show your solution so others with this same question can find the answer also.
Jim Shaffer
November 21,
disable sorting on col 4
grid1.onHeaderClicked = function(event,index){
if (index==4) return 'disabled';
return "";
};


to restore initial sort
grid1.sort(""); // hide marker
grid1.setRowIndices("");


tony
November 21,

This topic is archived.

See also:


Back to support forum