How can i disable the multiselected plugin
in the above link its toggled i want to enable or disable depending upon a particular condition.
tnx for the help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Don’t know how much JavaScript you know, but
$widget.multiselect('disable');will disable the selector (stored in the variable$widget). And by replacingdisablewithenableyou can enable it.So just run the function with the correct disable/enable setting and you can do it based on any condition.
Terw