Announcement

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

    Severe filterRow sizing issues in current 11.1p and 12.0p

    Hi Isomorphic,

    please see this sample (v11.1p_2018-08-11, v12.0p_2018-08-11) and modify as follows:
    Code:
    isc.IButton.create({
        width: 200,
        title: "Show/Hide FilterRow",
        click: "countryList.setShowFilterEditor(!countryList.showFilterEditor);"
    });
    isc.IButton.create({
        left: 250,
        width: 200,
        title: "invalidateCache to repair",
        click: "countryList.invalidateCache();"
    });
    isc.ListGrid.create({
        top: 50,
        ID: "countryList",
        width:1000, height:300, alternateRecordStyles:true,
        dataSource: worldDS,
        autoFetchData: true,
        showFilterEditor: false
    });
    
    
    isc.IButton.create({
        top: 450,
        width: 200,
        title: "fetchData to repair",
        click: "countryList2.fetchData();"
    });
    isc.ListGrid.create({
        top: 500,
        ID: "countryList2",
        width:1000, height:300, alternateRecordStyles:true,
        dataSource: worldDS,
        autoFetchData: false,
        showFilterEditor: true
    });
    As you can see, the field width of the fields in the filter row does not match the width of the fields in the ListGrid body.
    This is fixed in both cases (filterRow shown from start or enabled afterwards) only after arrival of data.

    Click image for larger version

Name:	filterRow sizing.png
Views:	65
Size:	56.4 KB
ID:	254481

    I do see this issue in my 11.1p application as well.

    Best regards
    Blama

    #2
    Thanks for the notification - we see this issue and have a developer looking at it

    Comment


      #3
      This issue will be resolved in the next nightly build

      Regards
      Isomorphic Software

      Comment


        #4
        Hi Isomorphic

        it seems to be fixed in v12.0p_2018-08-17, but NOT in v11.1p_2018-08-17 with the very same code!

        Best regards
        Blama

        Comment


          #5
          Hi Isomorphic,

          no change in v11.1p_2018-08-20 so far. Can you reproduce?

          Best regards
          Blama

          Comment


            #6
            Hi Isomorphic,

            this one is still open in 11.1p. I'm using the very same code from #1 with v11.1p_2018-08-23.

            You can also see it or a similar one here (v11.1p_2018-08-23), where the filter row in the lower Audit ListGrid changes its field's widths when clicking an entry in the top ListGrid (this does not happen in 12.0p).

            This one is the most important one of the open issues I reported for me.

            Best regards
            Blama

            Comment


              #7
              Sorry for the delay getting this ported back to 11.1 - this should now be present in 11.1. Please try the next nightly build dated Aug 28 or above

              Regards
              Isomorphic Software

              Comment


                #8
                Hi Isomorphic,

                I can see this is fixed now in the sample from #1 in 11.1p as well (v11.1p_2018-08-28). I'll retest my application as well.

                Best regards
                Blama

                Comment


                  #9
                  Thanks!

                  Comment

                  Working...
                  X