Hi,
I have 2 columns 'product' and 'product description'.Now,in the prompt page I assign the 'product' column to the value prompt and when I run the report and hover on the values in the prompt,it should display a tool tip with the 'product description' which is a column.Does anyone have a java script for this?Or can we display a text with diff descriptions for different values in the prompt?
Anyone? I have similar request.
Hi,
If i understood your question correctly, you are trying to display a tool tip for a list reprot column.
To display a tool tip
1) unlock the report
2) Place a HTML item before the data item in the column
3) Change the source type for HTML item to "Report Expression".
4) Type '<span title="'+[Product name]+'")"> ' (including single quotes) in the Expression Definition, where [Product name] is the data item you want to display as a tool tip.
5) Add another HTML item after the data item in the column
6) Change the source type for HTML item to "Report Expression".
7) Type '</span>' (including single quotes) in the Expression Definition
HTH