I have a full-grown qooxdoo desktop application and a freshly created mobile application. I want to reuse existing classes from my desktop app in my mobile app. I modified the configuration file so that the compiler knows about the paths.
Just adding a desktop widget to a mobile page is not possible because they seem to be completely incompatible:
var title = new myapp.ui.basic.Label("Test");
page1.getContent().add(title);
produces:
Uncaught TypeError: Object #<HTMLDivElement> has no method 'add'
Is there another way to use desktop classes in a mobile app?