GWT 2.5.1 and v8.3p_2013-03-22/LGPL (tested with 2013-04-11, too)
Setup
Problem
filterOnKeypress works if I either
If I first enter a date range and later a value for a text column no request is ever submitted against the server. Likewise, if I filter by text then by date (without modifying text afterwards) no request is submitted after the date range was entered.
Since this seems to occur only when using remote data sources I cannot provide a simple self-contained test case. The test case of one of my previous posts which uses a local data source does not show this behavior.
Note
If I change the date column to type TEXT this all works fine. I assume this is because then Smart GWT does not use the AdvancedCriteria API.
Setup
- ListGrid with three columns. Two columns have an unspecified type i.e. they use text. One column is ListGridFieldType.DATE.
- showFilterEditor and filterOnKeypress are both enabled.
- (remote) RestDataSource
Problem
filterOnKeypress works if I either
- only filter by text columns
- filter by text, then date and then modify the text again
If I first enter a date range and later a value for a text column no request is ever submitted against the server. Likewise, if I filter by text then by date (without modifying text afterwards) no request is submitted after the date range was entered.
Since this seems to occur only when using remote data sources I cannot provide a simple self-contained test case. The test case of one of my previous posts which uses a local data source does not show this behavior.
Note
If I change the date column to type TEXT this all works fine. I assume this is because then Smart GWT does not use the AdvancedCriteria API.
Comment