Dynamic title in custom link

I am setting up a custom hyperlink via an XML feed and would like to use a custom title.



This works…



print("");

print("<![CDATA[Details]]>");

print("");





This does not work…



print("<cell title=’’>");

print("<![CDATA[Details]]>");

print("");



I’d like to use the client_name field to be the Title. I’m attempting to use CDATA because some names may contain the ampersand sign.



XML allow usage of CDATA only for tags, it can’t be used in attributes.

There are 3 possible solution

a) replace & with & in client_name field, in such case you will not need to use CDATA
b) switch to native HTML tooltips
in js code
grid.attachEvent(“onMouseOver”,function(){ return false; })
in XML
print("");
print("<![CDATA[Details]]>");
print("");

c) use userdata to store necessary data and set title dynamically on client side

Thank you.  I went with option B.