I am using ASP.NET checkboxlist control. On the page I have a hyperlink. On its click blockUI plugin displayes a div which contains the checkbox list control.
The state of the checkboxes is always unchecked on calling blockUI again. The checkboxes are always unchecked evenif they were checked before on the page.
$("#multipleIA a:contains('multiple IA')").click(function () {
if($("#IACodes select option").size() > 0)
{
$.blockUI({
message: $('#chkgrpIA'),
css: { width:'240px', cursor: 'auto', backgroundColor: '#F2F2F2' }
});
$('.blockOverlay').click($.unblockUI);
}
});
$('#btnDone').click($.unblockUI);