No,

You should not override setValue, just call mSetValue(value) when you use an
instance of that class.
say, you have your class:

mytextfield = class({

   extend textfield,
   include mixin1

});

and going to the place where you use it, you would do something like this:

var mtf = new mytextfield();
mtf.mSetValue("myvalue");

also, you could use mtf.setValue("myvalue"); if you want the inherited
method from TextField and not the mixin special mSetValue.

cheers,
Gabi

--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/mixin-methods-cannot-override-object-methods-and-use-base-methods-tp6702514p6782526.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Doing More with Less: The Next Generation Virtual Desktop 
What are the key obstacles that have prevented many mid-market businesses
from deploying virtual desktops?   How do next-generation virtual desktops
provide companies an easier-to-deploy, easier-to-manage and more affordable
virtual desktop model.http://www.accelacomm.com/jaw/sfnl/114/51426474/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to