Announcement

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

    SmartGWT 3.0 - DataSourceField canEdit/canFilter

    Hi,

    I encountered an issue with

    GWT 2.4
    SmartGWT 3.0
    FF 7.0.1

    I use a datasource with some field configuration similiar to:

    Code:
    DataSourceField statusField = new DataSourceTextField("status", "Status");
    statusField.setValueMap("new", "read");
    statusField.setCanEdit(false);
    statusField.setCanFilter(true);
    I intented to disable the ability to edit the field in the listgrid but to be able to use it as a filter criteria in a filterbuilder.

    Unfortunately this won't work out as setCanEdit(false) will disable the comboBox in the filterbuilder.

    Is this an bug? If not how can I achieve my declared goal?

    Best regards!
    Megs

    #2
    This is working fine in tests. If you've just upgraded, be sure to run a GWT Compile and clear your browser cache.

    Comment


      #3
      thanks! can't reproduce

      Comment

      Working...
      X