Hàm js sử dụng để check all hoặc uncheck all các item trong control CheckBoxList ASP.NET
- <script language="javascript" type="text/javascript">
- function SetAllStateCheckBoxList(chkID, state) {
- var chk = document.getElementById(chkID);
- var items = chk.getElementsByTagName("input");
- for (var i = 0; i < items.length; i++) {
- items[i].checked = state;
- }
- }
- </script>
- <input type="button" value="chọn hết" onclick="SetAllStateCheckBoxList('<%=CheckBoxList1.ClientID %>',true)" />
- <input type="button" value="bỏ chọn hết" onclick="SetAllStateCheckBoxList('<%=CheckBoxList1.ClientID %>',false)" />
- <asp:CheckBoxList ID="CheckBoxList1" runat="server">
- </asp:CheckBoxList>
Không có nhận xét nào :
Đăng nhận xét