Developer's Blog
//Check Items by index
var
selIndex = [0, 2, 3];
for
(
i = 0; i < selIndex.length; i++) {
$(
"[id*=CheckBoxList1] input:checkbox"
).eq(selIndex[i]).prop(
'checked'
,
true
);
}
No comments:
Post a Comment