Announcement

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

  • andreangelino
    replied
    Thank you

    Leave a comment:


  • Isomorphic
    replied
    This issue is now resolved. Please try the latest nightly build (Feb 6 or above)
    If it persists again, of course, please let us know!

    Regards
    Isomorphic Software

    Leave a comment:


  • Isomorphic
    replied
    Thanks for following up - yes, it looks like there was an issue with the change. We have a developer getting this resolved and will follow up when it's (properly) fixed

    Regards
    Isomorphic Software

    Leave a comment:


  • andreangelino
    replied
    Thanks for looking into this, will pull the latest build. I did notice the issue is still reproducible in showcase, is this expected?

    Leave a comment:


  • Isomorphic
    replied
    A change has been made to address this issue.
    Please try the next nightly build dated Jan 31 or above

    Regards
    Isomorphic Software

    Leave a comment:


  • Isomorphic
    replied
    Hello - sorry for the silence. We have a developer looking at this and will follow up soon

    Regards
    Isomorphic Software

    Leave a comment:


  • andreangelino
    replied
    Hello, has there been any update on this? Thanks

    Leave a comment:


  • alwaysShowOperatorIcon bug when removing/adding columns or navigating beyond initial displayed columns

    It seems that setting the alwaysShowOperatorIcon flag in a list grid does not consistently show the operator icons when modifying column structure or navigating before the initially drawn columns.


    VERSION: v12.0p_2019-07-10/Pro.


    BROWSER: This behavior has been observed on all browsers/platforms i.e. Chrome,Firefox,IE11,Safari/Linux,Windows 7 Enterprise,Mac Mojave


    SCENARIO:
    In a ListGrid with showFilterEditor, allowFilterOperators and alwaysShowOperatorIcon set to true, by default all operators are shown correctly.
    When a column is removed and added again, or if a new column is added that was not initially displayed, upon redraw the icons are no longer visible. This issue is also observed when we need to scroll to the right on a listgrid that has more columns than those displayed within the viewport.


    STEPS TO REPRODUCE:
    Navigate to the following Showcase example: https://www.smartclient.com/smartcli...OperatorFilter
    Replace the entire contents of inlineOperatorFilter.js with the following (only adding the alwaysShowOperatorIcon property):

    CODE:
    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:550, height:300, alternateRecordStyles:true,
        dataSource: worldDS,
        fields:[
            {name:"countryCode", width:60},
            {name:"countryName"},
            {name:"capital"},
            {name:"continent"},
            {name:"area"},
            {name:"population"}
        ],
        autoFetchData: true,
        showFilterEditor: true,
        allowFilterOperators: true,
        alwaysShowOperatorIcon: true,
        initialCriteria: { _constructor: "AdvancedCriteria", operator: "and",
            criteria: [
                { fieldName: "countryName", operator: "iNotContains", value: "i" },
                { fieldName: "capital", operator: "iNotStartsWith", value: "p" }
            ]
        }
    });

    Click on the "Try it" button to run the code

    All operators will be displayed as expected:

    Click image for larger version

Name:	Screen Shot 2020-01-23 at 4.13.53 PM.png
Views:	212
Size:	3.2 KB
ID:	260859

    Using the header context menu (right click on header) on any column remove Capital from the list of columns and re-add it.
    You can see that the icons are now only showing for the columns where an initial criteria is set.

    Click image for larger version

Name:	Screen Shot 2020-01-23 at 4.14.44 PM.png
Views:	84
Size:	3.0 KB
ID:	260860
Working...
X