hi,

i have the same question:


qx.Class.define("my.cool.A", {
  extend : qx.core.Object,
  ...
  members : {
    foo : function() {
      alert("A");
    }
  }
});


qx.Class.define("my.cool.B", {
  extend : my.cool.A,
  ...
  members : {
    foo : function() {
      alert("B")
    },
foo2 : function() {
      //call foo from my.cool.A
    }
  }
});

how can I call from foo2 (class B) the foo (class A) function?
-- 
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Calling-a-superclass-method-from-a-different-method-tp4979101p5187632.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to