Hi there,
Removing an selected item of a MultiComboBoxItem does fail.
Tested with the latest edition: SmartClient_v101p_2016-01-21_Pro
Reproducable in all current Browsers

This case should really be in a automated testcase. In Smartclient 10.0 this worked like expected.
Code for reproduction:
Best Regards
Removing an selected item of a MultiComboBoxItem does fail.
Tested with the latest edition: SmartClient_v101p_2016-01-21_Pro
Reproducable in all current Browsers
This case should really be in a automated testcase. In Smartclient 10.0 this worked like expected.
Code for reproduction:
Code:
isc.Log.setDefaultPriority(2);
isc.VLayout.create({
"ID" : "theRootLayout",
"hideUsingDisplayNone" : false,
"leaveScrollbarGap" : false,
"members" :
[
isc.DynamicForm.create({
"ID" : "theForm",
"width" : "100%",
"isGroup" : true,
"groupTitle" : "TheTopic",
"groupBorderCSS" : "1px solid #BBBBBB",
"margin" : "5px",
"padding" : 4,
"hideUsingDisplayNone" : false,
"numCols" : 4,
"autoFocus" : true,
"selectOnFocus" : true,
"canEdit" : true,
"readOnlyDisplay" : "static",
"fields" :
[{
"ID" : "theMultiComboBoxItem",
"name" : "theMultiComboBoxItem",
"title" : "",
"editorType" : "MultiComboBoxItem",
"showTitle" : false,
"width" : 200,
"readOnlyDisplay" : "static",
"layoutStyle" : "verticalReverse",
"valueMap" : {
1 : "New York",
2 : "Madrid",
3 : "Berlin",
4 : "Paris"
}
}
],
"values" : {
"theMultiComboBoxItem" :
[1, 2, 3]
}
})
]
})
Comment