Hi Alex, I couldn't implement a tooltip with custom cellrenderer. But a little trick helpt me out: table.setFocusCellOnMouseMove(true);
So its possible to get the row id to get the rowdata. May its usefull. var popup = new qx.ui.popup.Popup(new qx.ui.layout.Canvas()).set({ backgroundColor: "#FFFAD3", padding: [2, 4], offset : 15, offsetBottom : 40 }); popup.add(lab = new qx.ui.basic.Label("sdadadda")); table.setFocusCellOnMouseMove(true); table.addListener("mousemove", function(e) { var data = this.getTableModel().getRowData(this.getFocusedRow()); lab.setValue(data.METADATA); // Put the METADATA of ROW in Label popup.placeToMouse(e); popup.show(); }); regards Mustafa Sak > Hi Mustafa, > > Am 19.08.2010 17:38, schrieb Mustafa Sak: >> Is their any way to show tooltip or may be a small widget with mouse >> events to show meta data of remote table rows? > > >> I mean if no tooltip support exists, how could a custom class look like >> to bind a widget to mouse movements and more important how to determine >> that the mouse is over a specific cell / row ? > Since all table cells are no widgets ("just" plain HTML) you have to > implement the event handlers in a special cellrenderer, I guess. > > The cellrenderer should implement a certain mouse event handler (e.g. > "mouseover") and should call your method to be able to show a tooltip. > > cheers, > Alex > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by > > Make an app they can't live without > Enter the BlackBerry Developer Challenge > http://p.sf.net/sfu/RIM-dev2dev > _______________________________________________ > qooxdoo-devel mailing list > qooxdoo-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel > ------------------------------------------------------------------------------ Sell apps to millions through the Intel(R) Atom(Tm) Developer Program Be part of this innovative community and reach millions of netbook users worldwide. Take advantage of special opportunities to increase revenue and speed time-to-market. Join now, and jumpstart your future. http://p.sf.net/sfu/intel-atom-d2d _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel