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"
This work in Firefox and Chrome (as soon as the mouse exit ListGrid component, the tooltip disappear ).
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.
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"
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); }
Thanks for your help.
Michel.
Comment