How to add checkbox to datagrid?
Answers were Sorted based on User's Feedback
Answer / kiran
<asp:GridView ID="GridView1" runat="server"
AutoGenerateColumns="False" CellPadding="4">
<Columns>
<asp:BoundField DataField="Status"
HeaderText="PO Status" />
<asp:TemplateField HeaderText="Mark as
Complete" >
<HeaderTemplate>
<asp:CheckBox ID=check runat=server
Checked=false />
</HeaderTemplate>
<ItemTemplate>
<asp:CheckBox ID="chkComplete"
runat="server" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
Is This Answer Correct ? | 19 Yes | 6 No |
Answer / amit kumar
first add itemtemplate in gridview than add checkbox in side
the itemtemplate
Is This Answer Correct ? | 8 Yes | 2 No |
Answer / s.munna
<asp:GridView ID="dgvVerReferral" runat="server"
Height="456px" Width="944px">
<Columns>
<asp:TemplateField HeaderText ="click">
<ItemTemplate >
<asp:CheckBox ID="CheckBox1" runat="server" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
Is This Answer Correct ? | 1 Yes | 5 No |
Answer / swapna
Dim str as string =" "
dim item as datagriditem
dim chk as checkbox
for each item in datagrid1.items
chk=CType(item.findcontrol("ch"),checkbox)
if chk.checked=true then
str=str & "," & item.cells(1).text
end if
next
Response.write(str)
Is This Answer Correct ? | 8 Yes | 13 No |
How to get Dynamically Linked Comboboxes Set?
Code for Sending E-Mail with System.Web.Mail?
Code for Presenting Parent/Child Data in a Data Grid Row?
How to Create Scrollable Micro Windows?
hold checkbox values
how to upload an excel in c# ASP.Net?
Code for Document Validation in XML.NET?
ArrayList declaration in .net
How we implement the paypal in my website and how we make a payment through Credit Card.
where is assembly are store
Code for Getting Information About A File?
how to upload a photo? i need to use it in a matrimonial applicaton...