I have date and datetime column in various listgrids, and if you click those , you get the popup window where you can select the range. Is it possible to change the dateformat of this to European?
I tried this:
But then the editor is not in a popup, but is put in the header itself, which doesn't fit. So I just want the same popup as now, but then with european date format.
Possible?
(using power edition 2.5, latest nightly)
I tried this:
Code:
DateRangeItem dateRangeItem = new DateRangeItem("dri", "Date Range"); dateRangeItem.setAllowRelativeDates(true); dateRangeItem.setDateFormatter(DateDisplayFormat.TOEUROPEANSHORTDATE); endDateField.setFilterEditorType(dateRangeItem);
Possible?
(using power edition 2.5, latest nightly)
Comment