Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hello i am new to JQUERY. i jave a gridview on .aspx page which displays employee details with certain columns. Now, I have sample code which displays data on dropdownlist value similarly i want to display when mouseover on gridview row. and dislay details accordingly.

.aspx code:

  <script type="text/javascript">
      $(document).ready(function () {
          $('#Customers').change(function () {
              $.ajax({
                  type: "POST",
                  contentType: "application/json; charset=utf-8",
                  url: "FetchEmploye.asmx/GetCustomer",
                  data: "{ CustomerID: '" + $('#Customers').val() + "'}",
                  dataType: "json",
                  success: function (data) {
                      $("#CustomerDetails").html(data.d);
                  }
              });
          });
      });
</script>

<div id="CustomerDetails">
    </div>
    <div id="SelectCustomers">
      <asp:DropDownList ID="Customers" runat="server">
      </asp:DropDownList>
    </div>

    <br />


    <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 
        CellPadding="4" DataSourceID="SqlDataSource1" ForeColor="#333333" 
        GridLines="None" OnRowDataBound="GridView1_RowDataBound">
        <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
        <RowStyle BackColor="#EFF3FB" />
        <EditRowStyle BackColor="#2461BF" />
        <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
        <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
        <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
        <AlternatingRowStyle BackColor="White" />
        <Columns>
            <asp:BoundField DataField="EmployeeID" HeaderText="ID" InsertVisible="False" 
                ReadOnly="True" SortExpression="EmployeeID" />
            <asp:BoundField DataField="fName" HeaderText="First Name" 
                SortExpression="FirstName" />
            <asp:BoundField DataField="Name" HeaderText="Last Name" 
                SortExpression="LastName" />
            <asp:BoundField DataField="EmailID" HeaderText="City" SortExpression="City" />
               <%-- <asp:BoundField DataField="HireDate" HeaderText="Hire Date" SortExpression="HireDate" />--%>
                <asp:TemplateField>
                    <ItemTemplate>
                        <asp:LinkButton ID="lnkMoreInfo" runat="server">More Info</asp:LinkButton>
                    </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" 
        ConnectionString="<%$ ConnectionStrings:cnTalk2Assistant %>" 
        SelectCommand="SELECT EmployeeID,EmployeeCode,UserAccountID,EmailID,fName,mName,lName,(fName+' '+lName)as Name,Landline,Mobile,p_Add_Line1,p_Add_Line2,p_Add_line3,p_CityID,p_StateID,p_countryID,r_Add_line1,r_Add_line2,r_add_line3,r_cityID,r_StateID,r_countryID,BirthDate,Gender,CreatedByID,CreateDt,LastModifiedByID,LastModifiedDt,IsActive,IsSuspended FROM EmployeeMst ORDER BY [EmployeeID]">
    </asp:SqlDataSource>

The DropDownlist works fine. Now just want to display same on mouseover of GridView row mouseover.

Help appreciated!

Thanks in Advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.