Click here to Skip to main content
15,881,172 members
Articles / Web Development / ASP.NET
Tip/Trick

GridView with HoverMenuExtender

Rate me:
Please Sign up or sign in to vote.
4.56/5 (5 votes)
17 Jan 2014CPOL3 min read 29.9K   577   5   3
The edit and delete options are available only for the particular record on which mouse pointer is focusing

Introduction

HoverMenuExtender is an extender available in AjaxControlToolkit that can be attached to any ASP.NET web control, and will associate that control with a popup panel to display additional content. When user moves the mouse cursor over the main control, two things happen:

  1. The popup panel is displayed at a position specified by the page developer (at the left, right, top or bottom of the main control).
  2. Optionally, a CSS style is applied to the control to specify it as "hot".
By using HoverMenuExtender which provides popup for edit and delete operations, we can transform the ASP.NET traditional GridView to the new GridView which is more dynamic in access and interactive in look.

Goal

In traditional ASP.NET GridView, the options for editing and deleting records are given on the left side or right side of the GridView by using CommandField tag and moreover the edit and delete options appear as LinkButtons for every record in the GridView.

By using HoverMenuExtender, we can provide popup for the edit and delete options whenever user focuses the mouse pointer on a particular record. The edit and delete options are available only for the particular record on which mouse pointer is focusing instead of showing for all the records. Once user clicks on the edit option which is present in popup window, the popup window will automatically disappear and new popup window will display giving options for updating the record and cancelling the current edit operation for the record which is in edit mode.

Using the Code

  1. Create Employee table store employee's records using Sql Server Management Studio as follows:
  2. Employee table contains columns for storing empid, ename, job, salary and deptname.

  3. Assuming that AjaxControlToolKit.dll is already added to the project and registered in web.config file as following in system.web tag:
  4. HTML
    <pages>
       <controls>
    <add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" 
    namespace="AjaxControlToolkit"/>
       </controls>
    </pages> 
  5. Add one appSettings tag in Configuration tag as follows to set UnobtrusiveValidatonMode to false:
  6. HTML
    <appSettings>
        <add key="ValidationSettings:UnobtrusiveValidationMode" value="none"/>
    </appSettings> 
  7. Add ASP.NET empty website template to the website project and name it as Default.aspx. In source view of Default.aspx, write the following code.
  8. In head tag, add classes in style tag as follows:
  9. HTML
    <head runat="server">
        <style type="text/css">
            .HoverMenu {
                background-color:orange;
                color:black;
            }
            .Hover{
                background-color:lightskyblue;
                color:red;
            }
        </style>
    </head> 

    HoverMenu class is used for styling the menu panel and Hover class is used with HoverCssClass property of HoverMenuExtender to highlight row of the GridView on which mouse pointer is going to focus.

  10. Now in form tag of Default.aspx page
    In UpdatePanel->
    -Add one GridView as follows:

    HTML
    <asp:GridView ID="gv" AutoGenerateColumns="false" 
    Width="70%" DataKeyNames="empid" runat="server" 
    EmptyDataText="No Data" OnRowEditing="gv_RowEditing" 
    OnRowCancelingEdit="gv_RowCancelingEdit" 
    OnRowUpdating="gv_RowUpdating" OnRowDeleting="gv_RowDeleting">
       <Columns>                        
        <asp:TemplateField>
         <HeaderTemplate>
          <table width="100%" border="1">
           <tr>
            <td width="20%">EmpId</td>
            <td width="20%">Ename</td>
            <td width="20%">Job</td>
            <td width="20%">Sal</td>
            <td width="20%">Dept</td>
           </tr>
          </table>
         </HeaderTemplate>
      
         <ItemTemplate>
    
     <!-----Panel for displaying the edit and delete options in GridView------>
    
          <asp:Panel ID="panel1" CssClass="HoverMenu" 
          runat="server"  Height="50" Width="50" 
          HorizontalAlign="Left">
           <div>
            <asp:LinkButton style="padding:4px;"  ID="lnkEdit"  
            CommandName="Edit" runat="server" Text="Edit">
            </asp:LinkButton><br />
            <asp:LinkButton  style="padding:4px;" ID="lnkDel" 
            CommandName="Delete" runat="server" Text="Delete">
            </asp:LinkButton>
           </div>
          </asp:Panel>
    
     <!-----Panel for displaying the records in GridView------>
    
          <asp:Panel ID="panel2" runat="server" >
           <table width="100%" border="1">
            <tr>
             <td width="20%"><%#Eval("empid") %></td>
             <td width="20%"><%#Eval("ename") %></td>
             <td width="20%"><%#Eval("job") %></td>
             <td width="20%"><%#Eval("sal") %></td>
             <td width="20%"><%#Eval("dname") %></td>
            </tr>
           </table>
          </asp:Panel>
    
     <!-----HoverMenuExtender for displaying edit and delete options------>
    
    <ajaxToolkit:HoverMenuExtender ID="hme1" HoverCssClass="Hover" 
    TargetControlID="panel2" PopupControlID="panel1" 
    PopupPosition="Left" runat="server"></ajaxToolkit:HoverMenuExtender>
          </ItemTemplate>
    
     <!-----EditItemTemplate for displaying TextBoxes in edit mode in the GridView------>
    
          <EditItemTemplate>
    
     <!-----Panel for displaying the update and cancel options for selected row------>
    
           <asp:Panel ID="panel3" runat="server"  
           Height="50" style="background-color:aqua;" 
           ForeColor="red" Width="50" HorizontalAlign="Left">
            <div>
             <asp:LinkButton ID="lnkUpdate"  CommandName="Update" 
             runat="server" Text="Update"></asp:LinkButton><br />
             <asp:LinkButton ID="lnkCanel" runat="server" 
             Text="Cancel" CommandName="Cancel"></asp:LinkButton>
            </div>
           </asp:Panel>
    
     <!-----Panel for displaying the TextBoxes in GridView------>
    
           <asp:Panel ID="panel2" runat="server">
            <table width="100%" border="1">
             <tr>
              <td width="20%"><asp:Label ID="lblId" 
              Text='<%#Eval("empid") %>' runat="server">
              </asp:Label></td>
              <td width="20%"><asp:TextBox ID="txtName" 
              Text='<%#Eval("ename") %>' runat="server">
              </asp:TextBox></td>
              <td width="20%"><asp:TextBox ID="txtJob" 
              Text='<%#Eval("job") %>' runat="server">
              </asp:TextBox></td>
              <td width="20%"><asp:TextBox ID="txtSal" 
              Text='<%#Eval("sal") %>' runat="server">
              </asp:TextBox></td>
              <td width="20%"><asp:TextBox ID="txtDept" 
              Text='<%#Eval("dept")%>' runat="server">
              </asp:TextBox></td>
             </tr>
            </table>
           </asp:Panel>
    
     <!-----HoverMenuExtender for displaying update and cancel options------>
    
    <ajaxToolkit:HoverMenuExtender ID="hme2" TargetControlID="panel2" 
    PopupControlID="panel3" PopupPosition="Right" 
    HoverDelay="25" runat="server"></ajaxToolkit:HoverMenuExtender>
          </EditItemTemplate>
         </asp:TemplateField>
        </Columns>
       </asp:GridView> 

    Understanding the controls used in this example:

    ControlIDDescription
    GridViewgv Display record in grid format
    HoverMenuExtender

    hme1,

    hme2

    hme1-> it is attached with panel2 of ItemTemplate that displays records in GridView. hme1 display menu with edit and delete options.

    hme2-> it is attached with panel2 of EditItemTemplate that displays TextBoxes in edit mode. hme2 display menu with update and cancel options.

    <span style="font-size: 15px;">Panel</span>

    panel1,

    panel2,

    panel3

    panel1 -> contains two LinkButtons one for edit and other one for delete. It is used with PopupControlID property of hme1.

    panel2 -> is for displaying records in the GridView and used in ItemTemplate and EditItemTemplate. It is used with TargetControlID property of hme1 and hme2.

    panel3 -> contains two LinkButtons, one for update and other one for cancel the current edit. It is used with PopupControlID property of hme2.


    To perform edit, update and delete operations in code behind OnRowEditing, OnRowCancelingEdit, OnRowUpdating, OnRowDeleting events are used.
  11. Now in Default.aspx.cs file, add following code write operations for edit and delete as follows:

    C#
    protected void gv_RowEditing(object sender, GridViewEditEventArgs e)
    {
      gv.EditIndex = e.NewEditIndex;
      binddata();
    }
    
    protected void gv_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {
    
     string tempId = (((Label)gv.Rows[e.RowIndex].FindControl("lblId")).Text).ToString();
     string tempName = (((TextBox)gv.Rows[e.RowIndex].FindControl("txtName")).Text.Trim()).ToString();
     string tempJob = (((TextBox)gv.Rows[e.RowIndex].FindControl("txtJob")).Text.Trim()).ToString();
     string tempSal = (((TextBox)gv.Rows[e.RowIndex].FindControl("txtSal")).Text.Trim()).ToString();
     string tempdeptno = (((TextBox)gv.Rows[e.RowIndex].FindControl("txtDept")).Text.Trim()).ToString();
    
     string[] obj =  {tempId,tempName,tempJob,tempSal,tempdeptno};
    
     execPrc("prcUpdateEmployee", obj);
     gv.EditIndex = -1;
     binddata();
    
    }
    
    protected void gv_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
    {
      gv.EditIndex = -1;
      binddata();
    }
    
    protected void gv_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            string tempId = e.Keys["empid"].ToString();
            string[] obj=new string[]{tempId};        
            execPrc("prcDeleteEmployee", obj);
            binddata();
        } 

    binddata() is a function which binds employee table data to GridView.

    execPrc(string prcName, string[] params) is a function which takes name of stored procedure and string array of parameters as input and perform related operation on database whenever get called.

  12. Run the project to check the output.

Output Windows

When mouse pointer is pointing to the GridView row:

Image 1

While editing a single row:

Image 2

Points of Interest

Using AjaxControlToolKit transforming ASP.NET traditional GridView to modern type of GridView which looks more attractive and dynamic while accessing the data.

License

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


Written By
Student NA
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionGood Job Pin
ashok4067-Aug-14 18:44
ashok4067-Aug-14 18:44 
QuestionNeeds some work Pin
Richard MacCutchan16-Jan-14 4:53
mveRichard MacCutchan16-Jan-14 4:53 
AnswerRe: Needs some work Pin
Vinay Jade16-Jan-14 7:16
professionalVinay Jade16-Jan-14 7:16 
thanks for the suggestion i will improve it

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.