Announcement

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

    modalEditing and markRecordRemoved issue

    Found an issue when mark a record removed on grid that set modalEditing = true. It function correctly if set modalEditing = false.
    You can test below code on https://www.smartclient.com/smartcli...d=modalEditing

    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:550, height:224, alternateRecordStyles:true,
        dataSource: countryDS,
        fields:[
            {name: "_remove", isRemoveField: true},
            {name:"countryCode", title:"Flag", width:40, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false},
            {name:"countryName", editorType: "TextAreaItem"},
            {name:"continent"},
            {name:"member_g8"},
            {name:"population"},
            {name:"independence"}
        ],
        canRemoveRecords: true,
        autoSaveEdits: false,
        autoFetchData: true,
        canEdit: true,
        editEvent: "doubleClick",
        modalEditing: true,
    })

    Regards,
    ryanang

    Attached Files
Working...
X