Hi
Download Dropdown Check List jQuery plugin and using into my application it is working fine for me.
I am able unchecking check boxes dynamically but values are appearing in drop list label as it is and when form is posted these unchecked values also posting.
How do i unselect those values dynamically.
Below is my code, i am calling in onchange event.
$('#groupDropList :selected').each(function(i, selected){
var groupLable = $(selected).attr("label");
if(groupLable == 'Public' || groupLable == 'Share'){
$("#groupDropList"+$(selected).attr("index")).attr("checked", false);
}
});
Actually my requirement is based on condition i have to populate confirmation and based on that have to uncheck the option in drop list.
Please help me on this.
Thanking you in advance.
Praveen.P