Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListGrid canSort problem

    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
    Code:
    ListGridField remarks = new ListGridField("remarks","Remarks");
    remarks.setFrozen(true);
    remarks.setAlign(Alignment.LEFT);
    remarks.setWidth(180);
    remarks.setCanSort(false);
    remarks.setCanSortClientOnly(false);
    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.

    #2
    It seems that the problem was due to a browser cache problem ... Sorry for the post.

    Comment


      #3
      Actually that is good to know. Not a bad post.

      Comment

      Working...
      X