Hi, I am using SmartClient V11.0 Enterprise Edition build 2016-12-25
I have tested multiple = true in the listGrid and I found the values selected are stored(saved in the database) with brackets. And when I try select again, the selections do not applied again(not checked).
Furthermore, everytime I click the field and press enter key, the bracket keeps adding like [[[[Asia,Europe]]]]
Here is example "ListGrid> Editing > data validation" I have simulated.
-----------------------------------------------------------------------------------------
isc.ListGrid.create({
ID: "countryList",
width:550, height:224, alternateRecordStyles:true,
dataSource: countryDS,
fields:[
{name:"countryCode", title:"Flag", width:40, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false},
{name:"countryName"},
{name:"continent", multiple:true}, // <------------------------------------------------------ put multiple:true
{name:"member_g8"},
{name:"population",
validators:[
{type:"integerRange", min:1}
]
},
{name:"independence"}
],
autoFetchData: true,
canEdit: true,
editEvent: "click"
})
I have tested multiple = true in the listGrid and I found the values selected are stored(saved in the database) with brackets. And when I try select again, the selections do not applied again(not checked).
Furthermore, everytime I click the field and press enter key, the bracket keeps adding like [[[[Asia,Europe]]]]
Here is example "ListGrid> Editing > data validation" I have simulated.
-----------------------------------------------------------------------------------------
isc.ListGrid.create({
ID: "countryList",
width:550, height:224, alternateRecordStyles:true,
dataSource: countryDS,
fields:[
{name:"countryCode", title:"Flag", width:40, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false},
{name:"countryName"},
{name:"continent", multiple:true}, // <------------------------------------------------------ put multiple:true
{name:"member_g8"},
{name:"population",
validators:[
{type:"integerRange", min:1}
]
},
{name:"independence"}
],
autoFetchData: true,
canEdit: true,
editEvent: "click"
})
Comment