Announcement

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

    [warnOnRemoval:true] click in removeField column tries to remove non existant record

    SmartClient Version: v9.0p_2013-08-04/EVAL Development Only

    modify showcase sample #columnOrder

    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:500, height:"100%", alternateRecordStyles:true,
        data: countryData,
        fields:[
            {name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
            {name:"countryName", title:"Country"},
            {name:"capital", title:"Capital", showIf:"false"},
            {name:"continent", title:"Continent"}
        ],
    canRemoveRecords:true, warnOnRemoval:true,
        canReorderFields: true
    })
    if you try to click in the removeField column, under the last record, a bogus warn is displayed.

    #2
    Thanks for the report - this is fixed for builds dated August 6 and later

    Comment

    Working...
    X