Announcement

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

    Edge/IE - MouseEvent - Grid header tooltip doesn't detect mouse exit

    Hi Isomorphic,

    We are using v12.0p_2019-08-21

    We add a ListGrid in a VerticalPanel, when a header tooltip is displayed, if we exit the ListGrid component going up the tooltip doesn't disappear.
    In the screen capture, the mouse is on "TEXT"
    Click image for larger version

Name:	Bug tooltip Edge.jpg
Views:	125
Size:	15.8 KB
ID:	259244
    This work in Firefox and Chrome (as soon as the mouse exit ListGrid component, the tooltip disappear ).

    Code:
       public static ListGridRecord createRecord(String name, String surname) {
            ListGridRecord record = new ListGridRecord();
            record.setAttribute("Name", name);
            record.setAttribute("Surname", surname);
            return record;
        }
    
        public static ListGridRecord[] getRecords() {
            return new ListGridRecord[] {
                    createRecord("Name1", "Surname1"),
                    createRecord("Name2", "Surname2"),
                    createRecord("Name3", "Surname3")
            };
        }
    
        @Override
        public void onModuleLoad() {
    SimplePanel sp = new SimplePanel();
            VerticalPanel vp = new VerticalPanel();
            vp.add(new Label("TEXT"));
            vp.add(new Label("TEXT"));
            vp.add(new Label("TEXT"));
            vp.add(new Label("TEXT"));
            vp.add(new Label("TEXT"));
            sp.setSize("100%", "100%");
    
    
            final ListGrid grid = new ListGrid();
    
            grid.setWidth(500);
            grid.setHeight(300);
            grid.setData(getRecords());
    
            ListGridField nameField = new ListGridField("Name", "Name", 50);
    
            ListGridField surnameField = new ListGridField("Surname", "Surname");
    
            grid.setFields(nameField, surnameField);
    
            vp.add(grid);
            sp.add(vp);
    
            RootPanel.get().add(sp);
      }
    Just go over Name, wait for the Tooltip, move mouse over "TEXT", the tooltip doesn't disappear (in IE/EDGE).

    Thanks for your help.

    Michel.

    #2
    See the FAQ: don’t mix GWT and SmartGWT components unless there is no other choice.

    Let us know if you can reproduce such a problem while following best practices.

    Comment


      #3
      Hi Isomorphic,

      I have to use SmartGwt ListGrid component in an old application. I can't replace all components in one step (more than 200 000 lines of code).

      We have added ListGrid in many places in our application and we find few problem of compatiblity between smartgwt and other frameworks.

      Thanks for your help.

      Michel

      Comment


        #4
        We understand your situation. Sorry, but to get help with this you should probably purchase support. We have a steady stream of issue reports for non-legacy approaches, coming from paying customers. An issue with a legacy approach from a non-paying customer is not likely to rise to the top of the queue, especially when it may require a deep dive into GWT's widgets to figure out how they are blocking mouse events from reach us.

        Comment


          #5
          OK, request for a quote done this day.
          Thank you.

          Comment

          Working...
          X