cancel
Showing results for 
Search instead for 
Did you mean: 

Tooltip need to be displayed in multilines one below the other as listbox

Former Member
0 Kudos

Hi ,

Let me explain my scenario. In my database i have multivalues say eg( file1.doc, file2.doc, file3.doc). So in my front end i was fetching this concatinated filenames in the similar pattern as a tooltip.

So now i am able to get this file names dynamically as tool tips.

But now my requirement is these filenames which are in the concatinated pattern should appear as

filename1

filename2

filename3 in the tooltip .

Can you plz suggest me any possible way such that the tooltip will be displayed in this format though the values are in this concatinated way .

Regards,

Shaik.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Please try out this way -

Create a node and a atribute type string. tooltip->name (node->attribute)

Based on the values you got in the concatenated way code this way -

If tooltip = 'file1.doc'.

name = 'Filename1'.

Now bind this value to the node.

elseif tooltip = 'fiel2.doc

name = 'Filename2'.

Now bind this value to the node.

endif.

or consider the internal table and bound this table to the node directly.

In the Layout for the UI element provide the tooltip values from this node.

Regards

Lekha

Answers (0)