In my UI, I have a ScrollPanel
and I need to dynamically alter the cursor over this panel when a specific action is taken by the user. Despite thoroughly searching through all project files (including CSS and Java) for instances of "default" or Cursor.DEFAULT
, I cannot seem to find where it is periodically set to the default value for this panel within the element's style. Even when attempting to override it with !important
, it does not seem to work, leading me to suspect that GWT may be responsible.
Could I be looking in the wrong place for the cause of this issue? Is there a way to debug this specific cursor change, or could it possibly be an issue with the CSS (as conditional breakpoints on Style.setCursor()
are matching too many times, indicating it might also be changed using setAttribute
)?
I am able to change the cursor for the inner div, but doing so would be considered a Hack.