Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-18 Thread westor
Hi Fabian, thank you, that does the job right :-) Cheers Torsten Fabian Jakobs-2 wrote: > > Hi Torsten, >> based on this solution I want to show a google map in a >> qx.ui.pageview.tabview.Page . >> My code looks like this: >> >> var gmaps = function() { >> ... >> map = new GMap2(docume

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-18 Thread Fabian Jakobs
Hi Torsten, > based on this solution I want to show a google map in a > qx.ui.pageview.tabview.Page . > My code looks like this: > > var gmaps = function() { > ... > map = new GMap2(document.getElementById("map")); > ... > } > > var container = new qx.ui.basic.Atom(''); > container.addEventLi

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-18 Thread westor
Hi, based on this solution I want to show a google map in a qx.ui.pageview.tabview.Page . My code looks like this: var gmaps = function() { ... map = new GMap2(document.getElementById("map")); ... } var container = new qx.ui.basic.Atom(''); container.addEventListener("appear", f

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread Jose Leon
Hello, Works like a charm, thanks!! Regards On 5/3/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > "Jose Leon" <[EMAIL PROTECTED]> writes: > > > Hello, > > On 5/3/07, Leander Hanwald <[EMAIL PROTECTED]> wrote: > >> Here as buttons: > >> http://demo.qooxdoo.org/current/sample/html/test/DateCh

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread Jose Leon
Hello, On 5/3/07, Jim Hunter <[EMAIL PROTECTED]> wrote: > Jose, nice to see you hanging around this group! Me too! ;-) >None of the qooxdoo > controls are in the DOM until the very end of the process. This means that > any of their contents are likewise, not in the DOM until they get rendered. Yes

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread Jim Hunter
Jose, nice to see you hanging around this group! None of the qooxdoo controls are in the DOM until the very end of the process. This means that any of their contents are likewise, not in the DOM until they get rendered. The APPEAR event is called after they get rendered so you can use this event t

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread James A. Pyrich
Jose Leon wrote: > Hello, > On 5/3/07, Leander Hanwald <[EMAIL PROTECTED]> wrote: >> Here as buttons: >> http://demo.qooxdoo.org/current/sample/html/test/DateChooserButton_1.html > Thanks for the response, but the datetimepicker it was just a sample, > my problem is trying to access from javascript

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread Derrell . Lipman
"Jose Leon" <[EMAIL PROTECTED]> writes: > Hello, > On 5/3/07, Leander Hanwald <[EMAIL PROTECTED]> wrote: >> Here as buttons: >> http://demo.qooxdoo.org/current/sample/html/test/DateChooserButton_1.html > Thanks for the response, but the datetimepicker it was just a sample, > my problem is trying t

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread Dietrich Streifert
You have to attach an "appear" event to the atom. The event handler code is execute after DOM creation. Something like: myAtom.addEventListener("appear", *function*(e){ Calendar.setup(); }); Jose Leon schrieb: Hello, On 5/3/07, Leander Hanwald <[EMAIL PROTECTED]> wrote: Here as

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread Jose Leon
Hello, On 5/3/07, Leander Hanwald <[EMAIL PROTECTED]> wrote: > Here as buttons: > http://demo.qooxdoo.org/current/sample/html/test/DateChooserButton_1.html Thanks for the response, but the datetimepicker it was just a sample, my problem is trying to access from javascript the html items created ins

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread Leander Hanwald
Here as buttons: http://demo.qooxdoo.org/current/sample/html/test/DateChooserButton_1.html dperez schrieb: > Hola Jose, > > BTW, qooxdoo has a nice calendar widget. > So there is no need to use an external one. > > > Jose Leon wrote: > >> Hello, >> I'm trying to insert inside qooxdoo controls

Re: [qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread dperez
Hola Jose, BTW, qooxdoo has a nice calendar widget. So there is no need to use an external one. Jose Leon wrote: > > Hello, > I'm trying to insert inside qooxdoo controls, non-qooxdoo controls > that uses HTML and Javascript, here is a sample: > -- View this message in context: http://ww

[qooxdoo-devel] HTML+JS contents inside qooxdoo components

2007-05-03 Thread Jose Leon
Hello, I'm trying to insert inside qooxdoo controls, non-qooxdoo controls that uses HTML and Javascript, here is a sample: var GroupBox1= new qx.ui.groupbox.GroupBox("GroupBox1"); GroupBox1.setLeft(0); GroupBox1.setTop(0); GroupBox1.setWidth(496); GroupBox1.setHeight(216); var container =