W
William Gower
I need to develop a datagrid that uses columns from a table. In addition I
need two columns (checkboxes) that the user will use to indicate that this
record can be closed later. The checkboxed column is not a field in the
table. It is just for the purposes of the Datagrid and I do not need to
store whether it was checked or not. Do I use a Template Column for this?
need two columns (checkboxes) that the user will use to indicate that this
record can be closed later. The checkboxed column is not a field in the
table. It is just for the purposes of the Datagrid and I do not need to
store whether it was checked or not. Do I use a Template Column for this?
ataGrid id="DataGrid1" runat="server" AutoGenerateColumns="false"><Columns><asp:TemplateColumn HeaderText="MyCheckBoxColumn"><ItemTemplate><asp:CheckBox id="MyCheckBox" runat="server"></asp:CheckBox></ItemTemplate><EditTemplate><asp:TextBox id="MyTextBox" runat="server"></asp:TextBox></EditTemplate></asp:TemplateColumn></Columns></asp