Hello,
I'm using SmartClient_v91p_2014-03-23_PowerEdition and I'm trying to achieve MultiComboBox control that will show values in a grid via option data source and allow me to select multi values by checking a checkbox. I am able to show ComboBox with an option data source perfectly but when I try to add multi selection everything get messy. This is my code:
Thank you
I'm using SmartClient_v91p_2014-03-23_PowerEdition and I'm trying to achieve MultiComboBox control that will show values in a grid via option data source and allow me to select multi values by checking a checkbox. I am able to show ComboBox with an option data source perfectly but when I try to add multi selection everything get messy. This is my code:
Code:
{ /* autocomplete */
ID: "release_control_id",
name:"release",
title:"Release",
multipleAppearance:"picklist",
multiple: true,
editorType:"ComboBoxItem",
optionDataSource:"release_list",
pickListFields: [
{ name: "_copyTo", hidden: true },
{ name: "id", hidden: false },
{ name: "name", hidden: false },
{ name: "portfolio$name", hidden: false },
{ name: "startDate", hidden: false },
{ name: "endDate", hidden: false },
{ name: "deliveryQaManager$fullName", hidden: false },
{ name: "customerReleaseManager$fullName", hidden: false },
{ name: "status$name", hidden: false },
]
}
Comment