We are testing the “Expression Filter” functionality in our application.
It seems work well , except when we try to add an expression filter in the “Combo Box Item” filter editor type.
In this case the filter works only for the first time.
Then the entire table filters stops work.
This is one of the incriminated table filed:
And this are the table properties:
Have you got any suggestion?
It seems work well , except when we try to add an expression filter in the “Combo Box Item” filter editor type.
In this case the filter works only for the first time.
Then the entire table filters stops work.
This is one of the incriminated table filed:
Code:
<field title="Name" name="Name" type="text" editorType="ComboBoxItem" length="255" width="100%" align="left" cellAlign="left" detail="false" canEdit="false"></field>
Code:
grid.setWidth("100%"); grid.setHeight("90%"); grid.setShowFilterEditor(true); grid.setFilterOnKeypress(false); grid.setCanEdit(false); grid.setAutoFetchData(false); grid.setDataSource(stats);
Comment