Hi!

I have a Page with a Table on it...

qx.Class.define("kiosk_portal.KioskListTab",
{
  extend : qx.ui.tabview.Page,
  members :
  {
    host_id : null
  },
  construct : function(label)
    {
      this.base(arguments, label);
      this.setLayout(new qx.ui.layout.Grow());

      this.__kioskListTable = new kiosk_portal.KioskListTable().set({
        decorator: null,
        height: 20,
        maxWidth: 550
      });

      this.add(this.__kioskListTable);
      this.setShowCloseButton(false);
    },

>From within the kiosk_portal.KioskListTable(), I want to grab the
TabView that holds this Page, so I can call a method on it.

How to get the parent TabView for this Table?

Thanks!
Scott

------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to