Trying to set allowEmptyValue on dropdown editor. When I set the value to the empty value, it resets it to the original. Am I missing something? Also in a separate testcases, there is no update request sent when empty value is set.
Code:
isc.ListGrid.create({ ID: "countryList", width:500, height:224, alternateRecordStyles:true, canEdit:true, editEvent:"click", modalEditing:true, data: countryData, fields:[ {name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false}, {name:"countryName", title:"Country"}, {name:"continent", title:"Continent",editorProperties:{allowEmptyValue: true}, valueMap:["Europe", "Asia", "North America", "Australia/Oceania", "South America", "Africa"] } ] })
Comment