The up down arrow is not shown in my datagrids (v1.40) even though it is set to sortable and the order is set:
{field:'CREATE_DATE',title:'Doc Date', width:80, fixed:true, sortable:true, order:'asc'},
In order to make this visible I need to override the css with:
div.datagrid-cell > span {
width: auto;
}
but the next problem is, when the datagrid is loaded, the sort icon for all columns EXCEPT FOR THE ONE DEFINED IN THE 'sortName' are not displayed.
It is only when you click on the header that the icon appears, and so the user does not know that the column is sortable.
Is it possible to show an 'up-down' icon for all columns that are sortable ?