SmartClient Version: v9.0p_2013-08-04/EVAL Development Only
modify showcase sample #columnOrder
if you try to click in the removeField column, under the last record, a bogus warn is displayed.
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
})
Comment