Hi,
I’m trying to disable a PopupDateField.
The textfield is correctly disabled, but the user can still open the popup Calendar and select a date.
PopupDateField df15 = new PopupDateField("Start Date");
df15.setResolution(InlineDateField.RESOLUTION_DAY);
df15.setWidth("100px");
df15.setEnabled(false);
Any help?
Marios