In this article we will see Datagrid common operations. These operations include editing Datagrid, updating Datagrid, cancel edit mode of Datagrid and selecting rows of Datagrid. In the next part of the article we will look at the paging and sorting features of Datagrid.
Microsoft.net framework ships with many useful controls. These controls makes the life of a developer easy by providing them with the functionality they want.
Among those many controls is the DataGrid control which helps the developer to display the data on the screen in the format of a table. Datagrid is one of the 3 template controls provided by the Microsoft.net framework. The other two are DataList and the Repeator control. Many new controls are being developed everyday but their basic idea is inherited from the classic DataGrid control.
In this article we will see the most common use of the Datagrid control. Lets set up the Datagrid.
Okay your Datagrid is set up, lets add some columns.
Adding the bound columns in the Datagrid is pretty simple.
Note: Please also note that the button type should be link button or else it wont work.
In this demo I am storing the database connection in the Web.config file. The database name is DBSnippets, which has one table known as tblPerson. Here is the web.config file.
<configuration> <appSettings> <add Key="ConnectionString" value="server=localhost;database=DBSnippets"> </appSettings> </configuration> |
Never store your username and password in clear text in the configuration file. Always always always encrypt it. For encrypting the connection string check out my article Securing Connection Strings.
Okay till now we have made the Datagrid and also saved the connection string in the web.config file. Now the time has come to code and handle the events.
Lets first make the BindData method which will retrieve the contents from the database and bind it on the screen. This will be one of the most important methods since it will be called whenever the page is loaded for the first time.
private void Page_Load(object sender, System.EventArgs e) { if(!Page.IsPostBack) { BindData(); } } |
As you see the BindData method is called when the page is not posted back. Now lets see the BindData method in details.
public void BindData() { SqlCommand myCommand = new SqlCommand("SP_SELECT_PERSONS",myConnection); myCommand.CommandType = CommandType.StoredProcedure; SqlDataAdapter myAdapter = new SqlDataAdapter(myCommand); DataSet ds = new DataSet(); myAdapter.Fill(ds,"tblPerson"); myConnection.Open(); myCommand.ExecuteNonQuery(); myDataGrid.DataSource = ds; myDataGrid.DataBind(); myConnection.Close(); } |
CREATE PROCEDURE SP_SELECT_PERSONS AS SELECT * FROM tblPerson GO |
As you can see that the above Stored Procedure is pretty simple. All we are doing is we are just selecting all the columns from the table person.
Lets now make the Edit method which will display textboxes inside the Datagrid so that user can insert data. This sort of editing is also known as In-place Editing.
Making Datagrid editable is pretty simple. All you to do is to code few lines in the EditCommand event of the Datagrid. You can view all the events supported by DataGrid by selecting properties and than selecting the Thunder/Flash yellow sign at the top of the properties window (This thunder sign will only appear if you are using C#. If you are using VB.NET all the events are displayed in dropdownlist).
Lets call our Edit DataGrid event Edit_DataGrid.
private void Edit_DataGrid(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) { // We use CommandEventArgs e to get the row which is being clicked // This also changes the DataGrid labels into Textboxes so user can edit them myDataGrid.EditItemIndex = e.Item.ItemIndex; // Always bind the data so the datagrid can be displayed. BindData(); } |
As you see when you click the edit link the update and the cancel link button automatically appears.
Lets now see the code for the Cancel Event. Cancel event is used when you are in the edit mode and you change your mind about editing. So, you click the cancel link button and the Datagrid returns back to its original condition.
private void Cancel_DataGrid(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) { // All we do in the cancel method is to assign '-1' to the datagrid editItemIndex // Once the edititemindex is set to '-1' the datagrid returns back to its original condition myDataGrid.EditItemIndex = -1; BindData(); } |
Okay now we come to a slightly difficult step. We will carefully look at the Update method and see how it works.
private void Update_DataGrid(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) { System.Web.UI.WebControls.TextBox cName = new System.Web.UI.WebControls.TextBox(); cName = (System.Web.UI.WebControls.TextBox) e.Item.Cells[1].Controls[0]; SqlCommand myCommand = new SqlCommand("SP_UpdatePerson",myConnection); myCommand.CommandType = CommandType.StoredProcedure; myCommand.Parameters.Add(new SqlParameter("@PersonName",SqlDbType.NVarChar,50)); myCommand.Parameters["@PersonName"].Value = cName.Text; myConnection.Open(); myCommand.ExecuteNonQuery(); myConnection.Close(); myDataGrid.EditItemIndex = -1; BindData(); } |
Lets now dig into this method and see what's going on.
CREATE PROCEDURE SP_UpdatePerson @PersonName nvarchar(50) AS UPDATE tblPerson SET PersonName = @PersonName WHERE PersonName = @PersonName; |
Another cool feature of the Datagrid control is that you can select any row from the Datagrid and it will be displayed as the highlighted row in the grid.
The highlight row event is called SelectedIndexChanged event. The event is called when the select column is clicked. The select column can be added to the Datagrid using the property builder, just like we added "edit/cancel/update" link buttons.
// This event is fired when the Select is clicked private void Select_DataGrid(object sender, System.EventArgs e) { // prints the value of the first cell in the DataGrid Label2.Text += myDataGrid.SelectedItem.Cells[0].Text; } |
This method is pretty simple. When the Datagrid select link button is pressed. We retrieve the item from the Datagrid which is residing on the same row on which the link button is pressed. As we can see above in the code that we are retrieving the value from the first column of the Datagrid.
For more articles about Datagrid control visit http://gridviewguy.com/Articles.aspx?articleCategoryID=2
I hope you all liked the article happy programming !