I need a checkbox selection with in dropdown/listbox,the below code is my sample code,that is working very fine with out master page but when I insert the same code with in master page then only the check boxes are not comming but I can able to select multiple items from list,I know the problem is with Jquery. Jquery is not triggering properly when I place the content in master page,so can any one help me to rectify this error
rel="stylesheet" type="text/css" />
$(function () {
alert(hai);
$('[id*=lstFruits]').multiselect({
includeSelectAllOption: true
});
});
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ShetPosted Mar 2, 2015, 2:19 AM
Why dont you use a CheckBoxList instead of adding checkbox within a ListBox.
Hope this will help you.