Categories | Question details Back To List | ||
Mouseover Message Hi, I defined first column as link. The syntax is given below: Response.Write "<column width=""100"" type=""link"" align=""left""><![CDATA[" & FieldName & "</a>"]]>" Response.write "<row><cell><![CDATA["""& value &"^javascript:drill(""" & value& """,""table"");^_self]]></cell>" How can I define "title" ? Since when I mouseover that column it should display some text. I used "div" tag. But when a huge title has to be displayed some part of the title is not getting displayed. I want the title to break when I have some huge text. How can I achieve this functionality? Answer posted by Support on Jun 24, 2008 08:35 You can define any custom title through cell attribute <row><cell title='any custom tooltip here'> But such solution will work native tooltips of browser, which is single lines one. There is no cross-browser way to show multiline tooltips, it can be done only with some third-party library. |