we need some items as selected in dropdownchecklist
Here we are using the following code
var Ids = $("#selectedIds").val();
if (Ids != "") {
$("#S1").dropdownchecklist({ forceMultiple: true, width: 0 });
var statusArray = new Array();
var statusString = new String();
statusString = Ids.toString();
statusArray = statusString.split(',');
for (var i = 0; i < statusArray.length; i++) {
$("#S1 option:[value='" + statusArray[i] + "']").attr('selected', 'selected');
}
}
$("#S1").dropdownchecklist({
forceMultiple: true,
maxDropHeight: 190,
width: 220,
onComplete: function (selector) {
var pcids = "";
for (i = 0; i < selector.options.length; i++) {
if (selector.options[i].selected && (selector.options[i].value != "")) {
if (pcids != "") pcids += ",";
pcids += selector.options[i].value;
}
}
}
});
by using these code we got multiple dropdownlist
Original issue reported on code.google.com by josne...@gmail.com on 15 Nov 2013 at 12:08
Original issue reported on code.google.com by
josne...@gmail.com
on 15 Nov 2013 at 12:08