Hi All
GWT 2.1.0
Smartgwt Pro 2.3
Firefox 3.6.13
I create one list grid and include filtering.
	I set to one field value map
	The data for filtering will be shown in a SelectItem. I like to show only my data in a filter editor (value1,value2,value3) without blank value in  a selectItem field. I actually want to restrict filtering all data (blank value).
Please help, how to do that?
					GWT 2.1.0
Smartgwt Pro 2.3
Firefox 3.6.13
I create one list grid and include filtering.
Code:
	
	grid.setShowFilterEditor(true); grid.setFilterOnKeypress(true);
Code:
	
	ListGridField company = new ListGridField("company");
company.setValueMap("value1","value2","value3");
Please help, how to do that?
Comment