Click here to Skip to main content
15,881,204 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
VB
Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound

Dim strToolTip As String = ""
       If e.Row.RowType = DataControlRowType.DataRow Then

           Dim s1 As String

           Dim drno As String = e.Row.Cells(3).Text

           s1 = "SELECT Remarks FROM DR_Status where drno = " & drno

           dt = dp.data_table(s1)

           For i As Integer = 0 To dt.Rows.Count - 1
               strToolTip = dt.Rows(i)("Remarks").ToString()

           Next
           e.Row.ToolTip = strToolTip
       End If

   End Sub



this is my code which is working properly.
But i want to do the same thing by using JQuery.
plz help me. m not getting how to do that
Posted

1 solution

A similar question was answered here[^]. The answers might help you.
 
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