Checkbox not displaying in DetailsView

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

Hi

I have placed a CheckBox control inside my GridView as below but the checkbox is not displayed in the column. Anyone know why that
happens ?

<Columns>
<asp:TemplateField HeaderText="" ItemStyle-Width="20px">
<asp:ItemTemplate>
<asp:CheckBox ID="cbTest" runat="server" AutoPostBack="false" />
</asp:ItemTemplate>
</asp:TemplateField>
...
</Columns>


Thanks
Peter
 
Back
Top