Hi, please let me know if I am doing something wrong here but it looks like the editorValueMap is not being used for editing a list grid field. Use the code below and when you click ont he continent field there is no value map displayed even though we configured an editorValueMap
Use this example here: https://www.smartclient.com/smartclient-release/showcase/?id=listType
Use this example here: https://www.smartclient.com/smartclient-release/showcase/?id=listType
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", editorValueMap:["Europe", "Asia", "North America", "Australia/Oceania", "South America", "Africa"] } ] })
Code:
[URL="https://www.smartclient.com/smartclient-release/showcase/?id=listType"][/URL]
Comment