Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Move mouse to hover area

    Is it possible to let the user move the mouse into a hover-area, and maybe click on it?

    I want to do something similar like http://www.smartclient.com/smartgwt/showcase/#grid_hover_custom

    But I have to generate some buttons and place them on the hover area, and let the user click them.

    Is this possible? And how can this be achieved?

    Using SmartGWT 3.0p EE.

    #2
    Facing the same problem as well

    Whenever hover a cell, and the hover component appear, wish it stay there and allow user to click on the content.

    Comment


      #3
      addHoverHiddenHandler helps?

      this.addHoverHiddenHandler(new HoverHiddenHandler(){

      @Override
      public void onHoverHidden(HoverHiddenEvent event) {

      }

      });

      I am wondering how can i make good use of this handler? Any idea?

      Comment

      Working...
      X