Hi!
In up to date builds of SGWT (Power), I can no longer filter fields of type ‘creatorTimestamp’ or ‘modifierTimestamp’ in a ListGrid that was generated by a DataSource.
The field appears in the filter, but you cannot enter any date values or select them via the calendar (disabled). Normal date fields, on the other hand, work as normal:

Definition of the ListGrid:
Definition of the fields which cannot be filtered:
In older builds (unclear until when) it worked.
In up to date builds of SGWT (Power), I can no longer filter fields of type ‘creatorTimestamp’ or ‘modifierTimestamp’ in a ListGrid that was generated by a DataSource.
The field appears in the filter, but you cannot enter any date values or select them via the calendar (disabled). Normal date fields, on the other hand, work as normal:
Definition of the ListGrid:
Code:
userList = new ListGrid();
userList.setDataSource(userMasterDataDS);
userList.setAutoFetchData(true);
userList.setAutoFetchTextMatchStyle(TextMatchStyle.STARTS_WITH);
userList.setShowRowNumbers(true);
userList.setShowFilterEditor(true);
userList.setCanSelectText(true);
userList.setCanSelectCells(true);
userList.setUseAllDataSourceFields(true);
Definition of the fields which cannot be filtered:
Code:
<field name="addedDate" type="creatorTimestamp" hidden="false" detail="true">
<title><fmt:message key="addedDate"/></title>
</field>
<field name="modifiedDate" type="modifierTimestamp" hidden="false" detail="true">
<title><fmt:message key="modifiedDate"/></title>
</field>
Comment