Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

  • Isomorphic
    replied
    This issue should be resolved in the latest nightly build in both the 13.0 and 13.1 branches.
    Please let us know if this fix doesn't work for you

    Thanks and Regards
    Isomorphic Software

    Leave a comment:


  • Isomorphic
    replied
    Hi
    We wanted to share a quick update to let you know that we are reproducing this issue and it is being looked at. We'll follow up with more information when we have it

    Thanks and Regards
    Isomorphic Software

    Leave a comment:


  • DataSource fields of typ creatorTimestamp and modifierTimestamp cannot be filtered

    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:
    Click image for larger version  Name:	chrome_GGOpaOFfjD.gif Views:	0 Size:	892.3 KB ID:	273385

    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>
    In older builds (unclear until when) it worked.
Working...
X