3.2.0

How can I show a cell's full data in a mouseover popup?

I have a library that will display text in a mouseover popup. How can I refer to an individual cell's data in that cells setevent method?

I want to do something like:

column.setEvent("onmouseover", "displaytooltip( obj.getDataText([i],[j]))");

where i and j are the indeces of the individual cells row and column?

Lazzab
January 17,
Hello,

Any one help me How to drag items inside the list box using javascript.

Thanks a lot.
January 18,
Perhaps you should be access the data like

obj.getDataText(i,j)

Otherwise you are passing arrays as the indexes. Which won't work.
Tony
January 18,
The problem is that I can't get a column and row index for the active cell in the "displaytooltip" function. How do I identify the active row/column?
Lazzab
January 18,
I would try a alert(i+' '+j+' -- 'obj.getDataText(i,j)) just to make sure you are getting the indexes first and the data for that cell. Then what ever you pass to your other function is arbitrary.
Tony
January 18,
Was a solution ever found for this? If so, would you kindly share it please? Thanks much.
Arthur
March 7,
I wound up using the id of the passed src (this) object. See [url]http://friendsofaw.com/nuke/modules.php?name=Forums&file=viewtopic&t=58&start=0&postdays=0&postorder=asc&highlight=[/url].

This was good enough for me because I know what column positions I want. If I needed the column dynamically, I'm still not sure how to get that index.
Arthur
March 7,

This topic is archived.

See also:


Back to support forum