Hello 

I've written an Hyperlink Cellrenderer:

qx.Class.define("com.vcollaborate.emenu.view.UrlCellRenderer",
{
  extend : qx.ui.table.cellrenderer.Html,

  construct : function(align, color, style, weight)
  {
    this.base(arguments, align, color, style, weight);
  },

  members :
  {
    // overridden
    _getContentHtml : function(cellInfo) {
        return ((' ' + cellInfo.value + ' ' + cellInfo.value + ' ' )|| "");
    }
        
  }
});

If I click now this cell, nothing happens. The cell gets the focus, but the
link does not open. How can I achieve to open this link?

/Kind regards

Christian
-- 
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Hyperlink-in-Table-cell-tp6023649p6023649.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to