Announcement

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

    Tahoe: ListGridField with comboBox editorType clears row when border is clicked

    Hi there,
    we noticed a bug that clears all fields in a line of a ListGrid when the border of a field with editorType "ComboBoxItem" is clicked.
    This can be observed in the "Enter New Rows" example when setting the ediorType of the continent-field to "ComboBoxItem", as in the code below. When the field is edited and its border is clicked, the whole line in the ListGrid becomes blank, as shown in the animation:


    The bug appears in Chrome and Firefox, not in IE.
    Its reproducable with the latest downloadable release (SmartClient_v111p_2017-09-05_Pro)

    You can paste the code here:
    https://www.smartclient.com/smartcli...izeIncrease=10
    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:500, height:224, alternateRecordStyles:true,
        // use server-side dataSource so edits are retained across page transitions
        dataSource: countryDS,
        // display a subset of fields from the datasource
        fields:[
            {name:"countryName"},
            {name:"continent", editorType: "ComboBoxItem"},
            {name:"member_g8"},
            {name:"population"},
            {name:"independence"}
        ],
        autoFetchData: true,
        canEdit: true,
        editEvent: "click",
        listEndEditAction: "next"
    })
    
    isc.IButton.create({
        top:250,
        title:"Edit New",
        click:"countryList.startEditingNew()"
    });
    Best regards

    #2
    We have reproduced the issue and are investigating potential fixes.

    Comment


      #3
      A fix for this issue has been committed and will be available in builds dated Sep 8 or later.
      Last edited by Isomorphic; 7 Sep 2017, 13:18.

      Comment


        #4
        Thanks this is fixed.

        Comment

        Working...
        X