Keith Kowalczykowski schrieb: > Thanks for the info. That worked well. Another quick question. I'm new to > the whole qooxdoo framework. I would like to integrate qooxdoo into some > existing code using the QxInline class. However, I'm finding as soon as I > include the Qooxdoo.js file, that qooxdoo is loaded (the grayish background > comes up across the whole screen). From a newbie perspective I assumed that > by using the QxInline, it would only load qooxdoo in within the div, span, > etc for which I was inlining it. Can someone explain to me how this really > works? And how you would best recommend I achieve what I am trying to do? > Thanks.
QxInline doesn't change the core behavior of qooxdoo. QxInline is just a normal widget which can be added to any dom node already existing inside your document (must have an ID attribute). QxInline widgets could only be added to the ClientDocument. The background color of the document comes through the qooxdoo appearance themes which changes the background color of the clientDocument. Sebastian > > --Keith > > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of cornel > Sent: Tuesday, June 20, 2006 2:32 PM > To: qooxdoo Development > Subject: Re: [qooxdoo-devel] Integrating Qooxdoo with Existing JS > >> //Initialize Qooxdoo > > something like this should do: > > var app=new QxApplication(); > app.init(); > > > > On 20/06/06, Keith Kowalczykowski <[EMAIL PROTECTED]> wrote: >> >> >> >> Hey Everyone, >> >> I'm not sure if this has been asked before, as the > mailing >> list archive on Sourceforge is currently down, so excuse me if this is a >> repeat. I was wondering if its possible to integrate Qooxdoo with existing >> JavaScript code. The only examples I have seen so far use >> window.application.main = function() to do initialization of Qooxdoo. What > I >> would like to be able to do is something like this: >> >> function existingEventHandler() >> { >> //Initialize Qooxdoo >> //Add some components >> } >> >> Is this possible? And if so, could someone give me some advice on how to >> best do it? Thanks in advance. >> >> --Keith >> >> >> >> >> >> _______________________________________________ >> qooxdoo-devel mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel >> >> >> > > > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel > > > > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
