Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Tooltip in fxml howto

917878Mar 2 2012 — edited Mar 5 2012
Hi All,

I am trying to define tooltip in fxml (javaFX 2.0), but no success:

The code below compiles, but the tooltip does not show. Should I activate it somehow?
If I add activated="true" an error (Property "activated" does not exist or is read-only) comes up.
...
<ImageView fx:id="action0" fitHeight="48" fitWidth="48" 
    onMouseClicked="#Action">
    <tooltip>
        <Tooltip text="Ho-hó-mmm"/>
    </tooltip>
    <style>
        -fx-effect: dropshadow( two-pass-box, black, 10, 0.0, 0, 0)
    </style>
    <image>
        <Image url="@icons/home_48.png"/>
    </image>
</ImageView>
...
I tried to wrap IamgeView into a Button, but got the same result.
This post has been answered by 885691 on Mar 2 2012
Jump to Answer

Comments

Jonathan Lewis

Which version of Oracle ?

What does v$session_wait_history show for that session.

What do you see as the state and event over a short set of queries to v$session for that sid ?

Regards

Jonathan Lewis


JustinCave

Sorry.

The database is 11.2.0.3 on AIX.

I'll take a look at gv$session_wait_history momentarily, we've killed the process and are restarting after giving the Access database a couple good kicks in the pants.

Justin

JustinCave

gv$session_wait_history is reporting events of

SQL*Net message to client

SQL*Net message from client

It does appear that the Access changes resolved the overall issue.  But while Access was chugging away, I was still seeing LAST_CALL_ET getting reset with no other obvious signs of activity.

Justin

Jonathan Lewis
Answer

JustinCave wrote:

gv$session_wait_history is reporting events of

SQL*Net message to client

SQL*Net message from client

It does appear that the Access changes resolved the overall issue.  But while Access was chugging away, I was still seeing LAST_CALL_ET getting reset with no other obvious signs of activity.

Justin

If it was changing between FROM and TO there must have been some message coming from Access and bouncing back without an error. Possibly some sort of OCI "ping" type call that didn't involve an SQL statement.

Update:  something like a "set context" or "set client identifier" perhaps; possibly a (non-SQL) rollback or commit


Regards

Jonathan Lewis

Marked as Answer by JustinCave · Sep 27 2020
1 - 4
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 2 2012
Added on Mar 2 2012
10 comments
6,650 views