私はこのGridViewのGridViewにチェックボックスを追加するにはどうすればよいですか?
<asp:GridView ID="gvValues" runat="server" Width="100%" AllowPaging="True" PagerSettings-Mode="NumericFirstLast" OnRowCommand="gvValues_RowCommand"
AutoGenerateColumns="False" CellPadding="0" PageSize="15" ItemType="Product" CssClass="table-striped table-condensed table table-bordered table-hover"
OnRowDataBound="gvValues_RowDataBound" OnPageIndexChanging="gvValues_PageIndexChanging" meta:resourcekey="gvValuesResource1" EmptyDataText="No Products in your Pos">
<EmptyDataRowStyle Font-Bold="True" Font-Size="16pt" ForeColor="Red" />
<RowStyle Wrap="true" HorizontalAlign="Center" />
<Columns>
<asp:TemplateField HeaderText="#">
<ItemTemplate><%# gvValues.PageSize*gvValues.PageIndex+ Container.DisplayIndex+1 %>
<asp:CheckBox ID="chkProduct" runat="server" CssClass="chkProduct"/>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="online" meta:resourcekey="Online">
<ItemTemplate >
<asp:CheckBox ID="chkProductonline" runat="server" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
私はproduct.on
は、チェックボックス
chkProductonline
をチェックする必要が
products = GetProduct();
gvValues.DataSource = products;
gvValues.DataBind();
としてC#の を使用してそれを処理してい
どうすればいいですか?
'add checkbox'とはどういう意味ですか?それは既にGridViewにありますか? –