Is there a way to specify, on a per-column basis, an un-sortable column? Or, alternatively, apply custom styles to a header? This apparently doesn't work:
// blah blah
var view1 = {
cells: [
[{name: 'ID', field: "ID", width:'100px', formatter:showFriendlyId, noSort:true, cls:'noSortClass'},
{name: 'Title', field: "title",width:'300px'}]]
};
// more blah blah grid wackyness
var view1 = {
cells: [
[{name: 'ID', field: "ID", width:'100px', formatter:showFriendlyId, noSort:true, cls:'noSortClass'},
{name: 'Title', field: "title",width:'300px'}]]
};
// more blah blah grid wackyness
