how to store multiple selected combo values to temp variable on button click . The selected values are in
Anyone Can help ?
$(document).ready(function () {
$("#btnSearch").click(function (e) {
});
});
var Ingredients = [
{ Name: "Android Native mobile controls" },
{ Name: "iOS Controls" },
{ Name: "SharePlus" },
{ Name: "ReportPlus" },
{ Name: "Indigo Studio" }
];
$(function () {
$("#IngredientsCombo").igCombo({
width: 300,
dataSource: Ingredients,
textKey: "Name",
valueKey: "Name",
multiSelection: {
enabled: true,
showCheckboxes: true
},
dropDownOrientation: "bottom"
});
});
Manav PandyaPosted Jan 30, 2018, 2:09 AM