Search code examples
gwtgxtdatefield

Disabling selection of dates in a date field


I'm using a date field in which I want to limit the date selection to a maximum of 90 days from the current date. How can i achieve this?

I tried dateField.setMaxvalue(maxDate), but I'm not able to limit the selection


Solution

  • I don't think the GWT datepicker has support for this. You could use a library like GWT-Bootstrap3 which does have all this (https://gwtbootstrap3.github.io/gwtbootstrap3-demo/#dateTimePicker).

    Or you could listen for events and rollback changes made by the user if selection was outside the valid range, and display a message to the user.