I created a Date filter and then modified it as follows:
RangeCellFilterComponent<DateField, HorizontalLayout> fg = filter.setDateFilter(colId);
DateField df1 = (DateField) fg.getSmallestField();
DateField df2 = (DateField) fg.getBiggestField();
df1.setResolution(Resolution.SECOND);
df2.setResolution(Resolution.SECOND);
This change enables showing hours, minutes and seconds in the filter widget but the user selection is ignored for hours, minutes and seconds. I believe the fixTiming method is the reason for the problem.
Thanks.
I created a Date filter and then modified it as follows: RangeCellFilterComponent<DateField, HorizontalLayout> fg = filter.setDateFilter(colId); DateField df1 = (DateField) fg.getSmallestField(); DateField df2 = (DateField) fg.getBiggestField(); df1.setResolution(Resolution.SECOND); df2.setResolution(Resolution.SECOND); This change enables showing hours, minutes and seconds in the filter widget but the user selection is ignored for hours, minutes and seconds. I believe the fixTiming method is the reason for the problem. Thanks.