Click here to Skip to main content
15,892,737 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have one Grid d view in that i have used bound Field to Bind the grid view
also i have fired the 4 Even
1) Row Command
2) Row Editing
3) Row Deleting
4) Page Index Changing Events.

while I click on The Edit button of the Gridview which i have taken in Template Field. In code behind in Row command event it fetch the all details using Command Arguments. and fill the data in webform.

The issue is when while am clicking two time of Edit button in gridview my gridview row converted into the text. while i have not used any textbox control in grid view.

So please help me to solve out this problem


C#
<asp:GridView ID="grFees" runat="server" CssClass="label " AutoGenerateColumns="False"
                                        OnRowCommand="grFees_RowCommand" BorderColor="#999999" BorderStyle="Solid" BorderWidth="1px"
                                        OnRowEditing="grFees_RowEditing" OnRowDeleting="grFees_RowDeleting" CellPadding="3"
                                        ForeColor="Black" GridLines="None" Font-Names="verdana" Font-Size="11px" AllowPaging="true"
                                        OnPageIndexChanging="grFees_PageIndexChanging" 
                                        onrowupdating="grFees_RowUpdating">
                                        <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
                                        <RowStyle Height="20px" BackColor="#F7F6F3" ForeColor="#333333" />
                                        <Columns>
                                            <asp:BoundField DataField="ParticularName" HeaderText="Particular Name">
                                                <HeaderStyle BackColor="#9097A9" HorizontalAlign="Left" VerticalAlign="Middle" Width="150px" />
                                                <ItemStyle HorizontalAlign="Left" VerticalAlign="Middle" Wrap="false" />
                                            </asp:BoundField>
                                            <asp:BoundField DataField="FeeType" HeaderText="Fee Type">
                                                <HeaderStyle BackColor="#9097A9" HorizontalAlign="Center" VerticalAlign="Middle"
                                                    Width="85px" />
                                                <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" Wrap="false" />
                                            </asp:BoundField>
                                            <asp:BoundField DataField="DiscountAmount" HeaderText="Discount Amount">
                                                <HeaderStyle BackColor="#9097A9" HorizontalAlign="Left" VerticalAlign="Middle" Width="110px"
                                                    Wrap="True" />
                                                <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" Wrap="true" Width="100px" />
                                            </asp:BoundField>
                                            <asp:BoundField DataField="PaymentType" HeaderText="Payment Type">
                                                <HeaderStyle BackColor="#9097A9" HorizontalAlign="Left" VerticalAlign="Middle" Width="78px"
                                                    Wrap="True" />
                                                <ItemStyle HorizontalAlign="Left" VerticalAlign="Middle" Wrap="true" Width="100px" />
                                            </asp:BoundField>
                                            <asp:TemplateField HeaderText="Edit">
                                                <ItemTemplate>
                                                    <asp:ImageButton ID="ImageButton3" runat="server" CausesValidation="false" ImageUrl="~/_Images/edit-icon.gif"
                                                        CommandName="Edit" CommandArgument='<%# Eval("ParticularsID")%>' />
                                                </ItemTemplate>
                                                <HeaderStyle HorizontalAlign="Center" BackColor="#9097A9" />
                                                <ItemStyle HorizontalAlign="Center" Width="50px" />
                                            </asp:TemplateField>
                                            <asp:TemplateField HeaderText="Delete">
                                                <ItemTemplate>
                                                    <asp:ImageButton ID="ImageButton4" runat="server" CausesValidation="false" ImageUrl="~/_Images/hr.gif"
                                                        CommandName="Delete" CommandArgument='<%# Eval("ParticularsID")%>' OnClientClick="javascript:return confirm('Are you sure, you want to delete Record?');" />
                                                </ItemTemplate>
                                                <HeaderStyle BackColor="#9097A9" HorizontalAlign="Center" />
                                                <ItemStyle HorizontalAlign="Center" Width="50px" />
                                            </asp:TemplateField>
                                        </Columns>
                                        <FooterStyle BackColor="#CCCCCC" Font-Bold="True" Font-Names="Verdana" Font-Size="11px" />
                                        <PagerStyle BackColor="#999999" ForeColor="Black" HorizontalAlign="Center" />
                                        <SelectedRowStyle BackColor="#79B1F0" Font-Bold="True" ForeColor="White" />
                                        <HeaderStyle BackColor="#267DA1" Font-Bold="True" ForeColor="White" />
                                        <AlternatingRowStyle BackColor="#CCCCCC" />
</asp:GridView>
Posted
Updated 17-Jan-13 18:34pm
v2
Comments
Sumit_Kumar_Sinha 18-Jan-13 0:30am    
post the complete design of girdview
viralchauhan 18-Jan-13 0:34am    
I have posted the gridview design
Sumit_Kumar_Sinha 18-Jan-13 0:51am    
Instead of asp:BoundField you use a <asp:TemplateField>............i think when we are using <asp:BoundField> then it's by default create with textbox.................the best way for using gridview you can use <asp:TemplateField>..............

If you want that on edit button your grid will not show text boxes.
the use
protected void grFees_RowCommand(object sender, GridViewCommandEventArgs e)
{

if (e.CommandName.Equals("Edit"))
{
// your code.
}
}

Remove following

OnRowEditing="grFees_RowEditing" from your grid view.
 
Share this answer
 
the gridviewe templatefield you need to design in the edititemtemplate

the the controls which will contains the data tha can be afected when using update or delete command
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900