CheckBoxList two columns compiled side by side into a table showing the concrete implementation

  • 2020-06-07 04:23:22
  • OfStack

 
<asp:CheckBoxList ID="DDLGroups" runat="server" RepeatLayout="Table" RepeatColumns="2" RepeatDirection="Horizontal" style="border-collapse:collapse; line-height:18px;margin-left:2px;"> 
</asp:CheckBoxList> 

 
<style type="text/css"> 
#DDLGroups{border-collapse:collapse; line-height:18px} 
#DDLGroups td{width:300px; border:1px solid #F0F8FF;padding-left:5px} 
</style> 

Gets the selected value:
 
// Get contact groups  
$("#DDLGroups tbody tr td input:checkbox:checked").each(function () { 
alert($(this).parent().find("label").html()) 
}); 

Related articles: