how to set one checkbox from asp.net checkboxlist control to unchecked where the index of the selected check box is i using jquery.
how to set one checkbox from asp.net checkboxlist control to unchecked where the index
Share
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.
If I understand you, you should be able to do something like:
To set it, you would use:
Note that the initial selector will get all the checkboxes on the page. If you need to restrict it to just a subset of checkboxes on the page, adjust the initial selector — based on a container or the naming scheme for the checkboxes – to deal with just the checkboxes in question. I’m also assuming that you’re using zero-based indexing for the checkbox in question.