retrieve checked option after result is displayed in multi select jquery -


the check box selection @ drop down list not retained after result being populated.

sample code

$("#ddlcheck").multiselect({     header: "select options below" });  var array_of_checked_values = $("select").multiselect("getchecked").map(function () {     return this.value; }); 

i want show checked option after search result

if (_all != null && _all != "" && _all != undefined && _all == "all") {     $("select").multiselect("widget").find("input:checkbox:eq(0)").trigger("click"); } 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -