Is it possible to add a java script mouse over to a grid control cell? If so, how do you do it?
Specifically, we’re trying to show a different tool tip for each cell, not the entire column or row.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should be able to add the tooltip to each cell / column like so:
gridview.rows(x).cells(y).ToolTip=”blah”
or say in the RowDataBound event…
e.Row.Cells(x).ToolTip=”blah”