Posted 9 April 2018, 10:58 am EST
We have an application that uses the MultiSelect control as part of a grid filter. The item source that we are using is a 4x3 multidimensional array. Each item in the array consists of 3 items: itemCheck, label and value which we mapped to the properties: checkedMemberPath, displayMemberPath and selectedValuePath respectfully. This would allow us to specify default selections when the user comes to the web page.
Here is the array we are using as the item source: [
{“itemChecked”:“true”,“label”:“Scheduled”,“value”:“Scheduled”},
{“itemChecked”:“true”,“label”:“Executed”,“value”:“Executed”},
{“itemChecked”:“true”,“label”:“Report Completed”,“value”:“Report Completed”},
{“itemChecked”:“false”,“label”:“Closed”,“value”:“Closed”}]
Last week we updated to the version 5.20181.436 and with the same array we get the error “Array Expected”.
Is this an error in the control or was the implementation changed?

