Hi all,
I was looking for a strange behavior on my listgrid.
This grid is populated with a DataSource with two columns:
See the grid in action in this <http://www.smartclient.com/smartgwt/showcase/#daterange_filtering_new_category> on the Filter Editor Grid.
BUG : [smartgwt-2.2]
If you display the Date Column and you filter on the dropdown selection, the dropdown selected value is not well shown.
If you hide the Date Column and do the same, the behavior is correct.
I found a post (http://forums.smartclient.com/showthread.php?t=11097&page=3) where Isomorphic says it is fixed on a nighly build, but as I use it for production purpose, I do want to use a stable build. Is there a fix I can apply? When does the 2.3 build be out?
I was looking for a strange behavior on my listgrid.
Code:
ListGrid grid = new ListGrid(); grid.setShowFilterEditor(true);
Code:
DataSourceTextField continentField = new DataSourceTextField("continent", "Continent"); continentField.setValueMap("Europe", "Asia", "North America", "Australia/Oceania", "South America", "Africa"); DataSourceDateField independenceField = new DataSourceDateField("independence", "Nationhood");
BUG : [smartgwt-2.2]
If you display the Date Column and you filter on the dropdown selection, the dropdown selected value is not well shown.
If you hide the Date Column and do the same, the behavior is correct.
I found a post (http://forums.smartclient.com/showthread.php?t=11097&page=3) where Isomorphic says it is fixed on a nighly build, but as I use it for production purpose, I do want to use a stable build. Is there a fix I can apply? When does the 2.3 build be out?
Comment