Hugh Gibson schrieb:
Diego Cibils <[EMAIL PROTECTED]> wrote:I'm willing to cooperate with anyone who has any problems integratingtinyMCE in qooxdoo as I've successfuly integrated it in my project.I can provide the source code also. It's pretty simple though.Yes please!Reminder - any possibility of this? We are at the stage of needing it for our project. Sounds like it might be a useful snippet too ;-)
We wrote a bridge for including widgets from another JS lib into qooxdoo. I attached the code. Maybe you can use it as template to write your own bridge.
The usage of our bridge is as follows:
----- snip -----
var sliderFactory = function(elem) {
var slider = new com.ptvag.webcomponent.ui.Slider(elem);
slider.setValue(20);
return slider;
};
var slider = new QooxdooBridge(sliderFactory);
slider.set({ width:100, height:21 });
myQooxdooContainer.add(slider);
----- snap -----
QooxdooBridge.js
Description: JavaScript source
