vote up 1 vote down star

I've got a grid (dojox.grid v1.2) that I don't want to be sortable. How can I disable that?

flag

64% accept rate

1 Answer

vote up 1 vote down check

Found it:

http://dojotoolkit.org/forum/dojox-dojox/dojox-grid-support/disable-sorting-specific-column-0

To save linking:

In your onload, or postrender add code like this:

dojo.byId('myGridId').canSort = function(col){ if(Math.abs(col) == 3) { return false; } else { return true; } };

(Note, the columns seem to be indexed from 1 in this setting.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.