NumberRangeFilter' control to filter the date values in my table. But this control can only filter integer numbers. I hope it provides an event when the block on the bar is moved, so I can update my table programmatically. The Controls library is still beta-ish and as such offers a limited range of Controls for you to play with (that's why a date control is still missing).
As a previous post in the forum noted, you can still listen for changes occurring on a specific control by listening to the 'statechange' event.
google.visualization.events.addListener(control1, "statechange", function() {
// your code. Access the current control state via
control1.getState();
});
Note that the event afaik is undocumented, hence its semantics or presence may change as the controls package transitions to a stable status.
/R.