it is possible to order by a no name column . How do I disable ordering for that column (witch has no name)?
The columns in grid accessible by their indexes , any column has index - so you can execute command against any column
>>How do I disable ordering for that column (witch has no name)?
Can be done as part of grid initialization
grid.setColSorting(“str,na,str,str”);
parameter of method - list of sorting type values for related columns, na - means not-available.