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:
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
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);
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
Comment