Click here to Skip to main content
15,885,914 members
Articles / Programming Languages / ASP
Tip/Trick

Bug in Gridview Editing

Rate me:
Please Sign up or sign in to vote.
1.22/5 (2 votes)
12 Aug 2012CPOL1 min read 12.5K   3   3
Bug in Gridview Editing

Tip is about the bug I found when we do inline editing in GridView control of ASP.Net in web application.   

 
To understand this fully follwing is my gridview code in AspX file

<gridview width="100%" runat="server" onrowupdating="grdView_RowUpdating" onrowediting="grdView_RowEditing" onrowdatabound="grdView_RowDataBound" onrowcancelingedit="grdView_RowCancelingEdit" id="grdView" gridlines="both" autogenerateeditbutton="True" autogeneratecolumns="false">
        <rowstyle cssclass="contentframework-aligncentre">
        <alternatingrowstyle cssclass="contentframework-formdatalabel">
        <headerstyle cssclass="contentframework-dataheadertop">
        <columns>
            <templatefield horizontalalign="Right" headertext="Rate" headerstyle-font-bold="true">
                <itemtemplate>
                    <label text="&lt;%#Bind(&quot;Currency_Rate&quot;) %&gt;" runat="server" id="lblRate" />
                </itemtemplate>
                <edititemtemplate>
                    <textbox text="&lt;%# Bind
                          (&quot;Currency_Rate&quot;) %&gt;" runat="server" maxlength="10" id="txtRate" />
                    <requiredfieldvalidator runat="server" id="reqRate" errormessage="*" controltovalidate="txtRate">
                    </requiredfieldvalidator>
                </edititemtemplate>
            </templatefield>
        </columns>
        <emptydatatemplate>
            <label text="No Data Found" runat="server" id="lblEmptyRow" />
        </emptydatatemplate>
    </headerstyle></alternatingrowstyle></rowstyle></gridview>
 

As you see in code I have attahced RowDataBound which fires when data get bound with the each row of the grid and RowEditing which get fire when user press edit button of the row in gridview.

 
Code in .Aspx.cs File

#region Grid Events
    protected void grdView_RowEditing(object sender, GridViewEditEventArgs e)
    {
        grdFXRate.EditIndex = e.NewEditIndex;
        BindGrid();
    }
 
    protected void grdView_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
    {
        grdView.EditIndex = -1;
        BindGrid();
    }
 
    protected void grdView_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {
        //get data and update
        int Currency_Rate = 0;
        TextBox txtRate = row.FindControl("txtRate") as TextBox;
        if (txtRate != null)
            Currency_Rate = Convert.ToDouble(txtRate.Text);
 
        saveDetails();
        grdView.EditIndex = -1;
        BindGrid();
    }
 
    protected void grdView_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowState == DataControlRowState.Edit )
        {
            GridViewRow row = e.Row;
            TextBox txtRate = row.FindControl("txtRate") as TextBox;
            if (txtRate != null)
                txtRate.Attributes.Add("onKeypress", "IntegerAndDecimal(event,'" + txtRate.ClientID + "',true)");
        }
    }
    #endregion Grid Events

 
As you see in code I have written code RowDataBound which find textbox control and attach javascript with it.  And second thing to notedown is that it finds textbox and attach script with it when row is in edit mode. This code works fine its attach script wwith the textbox when row is in edit mode.

Problem

But this code dont work when I click on edit butoon of alternet row which means that it not satisfy if condition. In Edit mode alternet row sate is "Alternet | Edit" where as when you click edit of non-alternetrow rostate is "Edit" which statify the if condition.
 
You weill get edit by below image where in immediate window it shows sate of alternet row.


 
Solution

Following is solution to avoid problem with the alternet row edit.

protected void grdView_RowDataBound(object sender, GridViewRowEventArgs e)
{
     if ((e.Row.RowState & DataControlRowState.Edit) > 0)
     {
          GridViewRow row = e.Row;
          TextBox txtRate = row.FindControl("txtRate") as TextBox;
          if (txtRate != null)
               txtRate.Attributes.Add(
                    "onKeypress", "IntegerAndDecimal(event,'" + txtRate.ClientID + "',true)");
     }
}
As you see in code condtion e.Row.RowState & DataControlRowState.Edit satisfy the for both alternet and non-alternet row and works fine.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India

Microsoft C# MVP (12-13)



Hey, I am Pranay Rana, working as a Team Leadin MNC. Web development in Asp.Net with C# and MS sql server are the experience tools that I have had for the past 5.5 years now.

For me def. of programming is : Programming is something that you do once and that get used by multiple for many years

You can visit my blog


StackOverFlow - http://stackoverflow.com/users/314488/pranay
My CV :- http://careers.stackoverflow.com/pranayamr

Awards:



Comments and Discussions

 
GeneralMy vote of 3 Pin
sandeepkumarvemula12-Feb-13 1:09
sandeepkumarvemula12-Feb-13 1:09 
GeneralMy vote of 1 Pin
Abdul Quader Mamun12-Aug-12 23:19
Abdul Quader Mamun12-Aug-12 23:19 
GeneralRe: My vote of 1 Pin
Abdul Quader Mamun12-Aug-12 23:20
Abdul Quader Mamun12-Aug-12 23:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.