You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 15, 2022. It is now read-only.
Hi
I'm trying to retrieve the (low and high) values selected by an end user
through the use of a DateRangeFilter.
I have written something like :
DateRangeFilter filter = new DateRangeFilter();
filter.addStateChangeHandler(new StateChangeHandler()
{
@Override
public void onStateChange(StateChangeEvent event)
{
System.out.println("onStateChange >" +
processFlawDRFilter.getObject().getState().getHighValue());
}
But it does not work. I see nothing on my console.
Do you know if there is a way to access to such values ?
thank a lot for your help
Original issue reported on code.google.com by ooooh.g...@gmail.com on 3 Mar 2015 at 5:41