qx.Class.define("test1.KioskFinder",
{
  extend : qx.ui.container.Composite,
  construct : function()
    {
      this.base(arguments);
      this.setLayout(new qx.ui.layout.VBox(5));
      this.__textField = new qx.ui.form.TextField;
      this.__hostTable = new qx.ui.table.Table;

      this.add (this.__textField);
      this.add (this.__hostTable);

      this.__hostTable.addListener("cellDblclick",
        function (e) {
          // What do I do to propagate the cellDblclick out to the
Composite container?
          // In my Application.js I want to be able to:
          //   var kioskFinder = new test1.KioskFinder();
          //   kioskFinder.addListener("tableDblClick",
          //    function (e) {
          //       Do something....
          //   } ,this);
        } ,this);
    }
});
------------------------------------------------------------------------------
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual 
desktops for less than the cost of PCs and save 60% on VDI infrastructure 
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to