These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

How can I set a tooltip text for a dynamic table by javascript

robman
Registered: Sep 18 2007
Posts: 25

I create a table, after click "add" button, a new row will be appended. Now, I want to set the tooltip for some special fields(maybe the tooltip text is different in different row). I think if I want to do that, I should write a javascript for setting the tooltip text, who knows what I should do?

My env is Livecycle ES 8.0.

My Product Information:
LiveCycle Designer, Windows
robman
Registered: Sep 18 2007
Posts: 25
I have fixed this issue.
In this field initialize event, add script:
FieldName.assist.toolTip = ""+FieldName.rawValue;
If I import the data, this tooltip can display correctly. :)