Hello,
i use
on firefox 24.3.0.
I create a combobox as follows:
and set it to ListGridField
So I get combobox in filter editor. But if I use expressions in this field no data is shown.
Any idea what going wrong or which settings must be done aditionally?
With best regards
i use
Code:
SmartClient Version: v10.0p_2015-04-21/PowerEdition Deployment (built 2015-04-21)
I create a combobox as follows:
Code:
ComboBoxItem cbi = new ComboBoxItem();
cbi.setOptionDataSource(DataSource.get("optionDataSource"));
ListGridField lgf1 = new ListGridField("lgf1", "lgf1");
ListGridField lgf2 = new ListGridField("lgf2", "lgf2");
cbi.setPickListFields(new ListGridField[]{lgf1, lgf2});
cbi.setAllowExpressions(true);
Code:
ListGrid lg = new ListGrid();
lg.setOptionDataSource(DataSource.get("dataSource"));
ListGridField lgf = lg.getField("optionField");
lgf.setFilterEditorProperties(cbi);
Any idea what going wrong or which settings must be done aditionally?
With best regards
Comment