Hi,
We are experiencing the following problem when using this component:
Setting a DateRange programmatically works just fine until we try to clear the component. Regardless whether we try it like this:
component.clear();
or like this:
component.setValue(null);
it always results in the actual value buffered by the component to be cleared but the presentation remaining untouched. So whatever is displayed before the clearing is still visible afterwards.
Using the in-component ‘x’ button to clear the content works fine.
What we could figure out already is that the java part constructs a ‘value’ property for the js component as ‘;’ and sends this to the js component. However, it seems to not get processed correctly.
We try to use this component inside the header of a standard vaadin grid.
Could you please have a look at this?