Thursday, September 19, 2024

Selecting, Confirming and Deleting Multiple Data Grid Items

Always wanted to build an easy solution to select multiple items from an ASP.NET DataGrid and delete them all at once like hotmail does? Well, it is built in just a few simple steps.

To start with, I am assuming that you are using an Access database in the backend and know how to populate DataGrid from database in ASP.NET. If not, look at my other article for beginners “Basics of Displaying Database Items on Web in ASP.NET” that will be published soon.

Now, to create a selection checkbox in your data grid, first set up your data grid as you would do it normally by dragging and dropping from toolbox in to your webForm1.aspx page. Then right click on data grid and select property builder. Go to column property tab and add a template column to the list of selected columns keeping it on the top of the list. Set the header text value as Select or whatever you wish. Click OK when you are done.

Once you are back on your design page, again right click on data grid and this time you will see another option of edit template column. Click on to edit template column and drag and drop checkbox control into ItemTemplate portion and change its ID to “cbSelect” or whatever name you wish to give it.

When done, right click on it and choose “End Template Editing”. Now, you will see the difference in your data grid, the first column will show up as header “Select” and a checkbox in front of each row. Now drag and drop a “button” above or below the DataGrid, and add a click event to the button.. You may name the button “Delete Selected”.

Note: My database has key field as SlNo (Serial Number) in tblxyz which is an auto number field and my delete operation will be based on this field. You can have some other field as your key field and you need to modify the codes wherever required.

Now is the important portion, go to html page mode from design mode and add DataKeyField=”SlNo” after <body MS_POSITIONING=”GridLayout” bgColor=”#ccffff”>

&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <form id=”Form1″ method=”post” runat=”server”>

&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <asp:DataGrid id=”DataGrid1″ style=”Z-INDEX: 101; LEFT: 8px; POSITION: absolute; TOP: 112px” DataKeyField=”SlNo”

&nbsp &nbsp &nbsp runat=”server” AutoGenerateColumns=”False” Width=”464px” Font-Size=”X-Small”>

&nbsp &nbsp &nbsp &nbsp <AlternatingItemStyle BackColor=”#99FFFF”></AlternatingItemStyle>

&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <HeaderStyle HorizontalAlign=”Center” ForeColor=”White” BackColor=”DarkBlue”></HeaderStyle>

&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <Columns>

&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <asp:TemplateColumn HeaderText=”Select”>

&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <ItemTemplate>

&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <asp:CheckBox id=”cbSelected” runat=”server”></asp:CheckBox>

&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp </ItemTemplate>

&nbsp &nbsp &nbsp &nbsp &nbsp </asp:TemplateColumn>

Now, again back to design view, drag and drop two oledbCommand controls and type this query in the command text of oleDBCommand1:

DELETE * FROM tblxyz WHERE SlNo =[@SlNo];

In CommandType select Text and in parameters, add a parameter @SlNo

And for oleDBCommand2, type in Command Text as:

SELECT * FROM tblxyz ;

Now, to code behind page, i.e. in my case, it is webform1.aspx.vb, add the following code:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

&nbsp&nbsp&nbsp Dim objItem As DataGridItem

&nbsp&nbsp&nbsp For Each objItem In DataGrid1.Items

&nbsp&nbsp&nbsp &nbsp If objItem.ItemType ListItemType.Header And objItem.ItemType ListItemType.Footer And objItem.ItemType ListItemType.Pager Then

&nbsp&nbsp&nbsp Dim ChkSelected1 As Boolean

&nbsp&nbsp&nbsp ChkSelected1 = CType(objItem.Cells(0).FindControl("cbSelected"), CheckBox).Checked

&nbsp&nbsp&nbsp If ChkSelected1 = True Then

&nbsp&nbsp&nbsp Dim SlNo As Integer

&nbsp&nbsp&nbsp SlNo = DataGrid1.DataKeys(objItem.ItemIndex).ToString()

&nbspOleDbCommand1.Parameters("@SlNo").Value = SlNo

OleDbConnection1.Open()

OleDbCommand1.ExecuteNonQuery()

OleDbConnection1.Close()

&nbsp&nbsp&nbsp End If

&nbsp&nbsp&nbsp End If

&nbsp&nbsp Next

&nbsp&nbsp DataGrid1.EditItemIndex = -1

&nbsp&nbsp DataBind1()

&nbsp&nbsp Response.Redirect("webform1.aspx")

&nbsp&nbsp End Sub

&nbsp&nbsp Sub DataBind1()

&nbsp&nbsp &nbsp&nbsp Dim adp As New OleDb.OleDbDataAdapter(OleDbCommand2)

&nbsp&nbsp &nbsp&nbsp Dim ds As New DataSet

&nbsp&nbsp adp.Fill(ds)

&nbsp&nbsp &nbsp DataGrid1.DataSource = ds

&nbsp&nbsp&nbsp&nbsp DataGrid1.DataBind()

&nbsp&nbsp End Sub

Also, if you want to pop up a confirmation message for deletion, like in hotmail, you can add the following codes to page_load sub:

Button3.Attributes("onclick") = "return confirm('Are you sure you _wish to delete these records?');"

And, that is it. You now have a data grid with hotmail style checkboxes to select multiple records and delete them at once when you click Delete button.

Sameer Lal is Chartered Accountant from India and Certified Management Accountant from USA.Sameer is from Toronto, Canada.

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles