Reputation: 53
I have a checkbox list inside a table row. The Checkboxes are equally spaced out but i want to remove the spacing between each checkbox. is this possible ? Also is it possible to text wrap labels that are too long for example "Autism Spectrum Disorder(neuro devel disorder)" I want to text wrap that. Any help would be much appreciated !
<tr>
<td colSpan="3" ID="tdQ29" runat="server">
<asp:checkboxlist id="chklDisabilities" AutoPostBack="True" RepeatLayout="Table" BorderWidth="0" CellPadding="0" CellSpacing="5" RepeatDirection="Horizontal" RepeatColumns="4" Runat="server" ></asp:checkboxlist>
</td>
<td></td>
<td></td>
</tr>
How i want it to look like:
Upvotes: 0
Views: 198
Reputation: 53
I have found the answer for this after doing some research. I just needed to change RepeatLayout to RepeatLayout="Flow"
Upvotes: 0