Hi,
I've a little problem with the setCanSort() function. When setting it to false, the user can still use the sorting functionnalities in the UI and the sort criteria is still sended to the server ...
My code is the following
Other code is the same as usual (see the testcase I posted there : http://forums.smartclient.com/showthread.php?t=13761 ) but let me know if you need more.
I've a little problem with the setCanSort() function. When setting it to false, the user can still use the sorting functionnalities in the UI and the sort criteria is still sended to the server ...
My code is the following
Code:
ListGridField remarks = new ListGridField("remarks","Remarks"); remarks.setFrozen(true); remarks.setAlign(Alignment.LEFT); remarks.setWidth(180); remarks.setCanSort(false); remarks.setCanSortClientOnly(false);
Comment