How can I dynamically add sort arrows (up/down) to a dojo enhanced Grid without using CSS?
var mygrid = new EnhancedGrid({
id: "grid",
store: gridStore,
structure: gridStructure,
canSort : function(index){
alert(index);
}
}, dojo.byId("mydatagrid"))
I have experimented with create, place, domclass in dojo, but the results were not as expected.
Your custom code snippet here...