Announcement

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

    13.0 bug while adding new rowd to grid with canExpandRecords:true

    SmartClient Version: SNAPSHOT_v13.0d_2021-07-02/AllModules Development Only (built 2021-07-02)
    12.1 is working

    Chrome, FF on MacOS

    Hello, please modify the expansionDetailField sample like this:

    Code:
    isc.ListGrid.create({
    ID: "countryList",
    width:500, height:"100%",
    alternateRecordStyles:true,
    expansionFieldImageShowSelected:true,
    data: countryData,
    fields: [
    {name: "countryName", title: "Country"},
    {name: "capital", title: "Capital"},
    {name: "continent", title: "Continent"}
    ],
    canExpandRecords: true,
    expansionMode: "detailField",
    detailField: "background"
    });
    
    
    isc.IButton.create({
    top:0,
    left:550,
    title:"add",
    click:function(){
    countryList.startEditingNew({gdp:5})
    }
    })
    Then:
    - expand the first row
    - click add, no focus in first cell
    - mouse click and type text in the first cell, press enter, nothing happens
    - if I click outside, the typed text is cleared

    note that if I let the grid height == 300, so that the grid is scrolled, entering a new row works even with the row expanded.

    #2
    Quick update - we see the problem and we're looking at the best fix.

    We'll update again when it's fixed - there was another bug, where the expansionComponents would fill the grid height briefly, and then size properly - that one's been fixed for today's builds.

    Comment


      #3
      This issue is now resolved.
      Please try the next nightly build, dated July 16 2021

      Regards
      Isomorphic Software

      Comment


        #4
        SmartClient Version: SNAPSHOT_v13.0d_2021-07-19/AllModules Development Only (built 2021-07-19)

        I see it's working, thank you very much

        Comment

        Working...
        X