Hi.
Now I am tryting to open ajax popup by using onmouseover of Label control.
I added onmouseover and onmouseout attribute to label control in gridview itemtemplate.
If e.Row.RowType = DataControlRowType.DataRow Then
Dim lblName As Label = CType(e.Row.FindControl("lblFullName"), Label)
lblName.Attributes.Add("onmouseover", "ShowTooltip()")
lblName.Attributes.Add("onmouseout", "HideTooltip()")
End If
Private Sub ShowTooltip()
modalpopup.show()
End Sub
private Sub HideTooltip()
modalpopup.hide()
End Sub
But I couldn't get any response.
Is there any way to show ajax modalpopup by using onmouseover and onmouseout attribute of label control ?