Hi,
I have a page that uses the RadListView control and a RadDataPager control. The RadListView control holds checkboxes with each item. The checkboxes have been wired to a click event using jQuery (see below).
$(document).ready(function () {
//Update the hidden variable with all fieldchoices to be added
$('#FieldSet1').find("input[type='checkbox']").click(function () {
//do something
});
});
However, when I page to another page using the RadDataPager, the checkboxes lose their onclick event AND the checked state.
Does anyone have any idea how to keep the checkbox wired to the click event, and also how to keep the checkboxes checked?
Thanks
I have a page that uses the RadListView control and a RadDataPager control. The RadListView control holds checkboxes with each item. The checkboxes have been wired to a click event using jQuery (see below).
$(document).ready(function () {
//Update the hidden variable with all fieldchoices to be added
$('#FieldSet1').find("input[type='checkbox']").click(function () {
//do something
});
});
However, when I page to another page using the RadDataPager, the checkboxes lose their onclick event AND the checked state.
Does anyone have any idea how to keep the checkbox wired to the click event, and also how to keep the checkboxes checked?
Thanks