Hello Alexander,
I'm sorry but I'm not familiar with qooxdoo 0.6.5 because I haven't been in
the core team that early. I hope someone on the list who is involved in the
project a longer time can help you.
Regards,
Martin

 

Alexander Bouz wrote:
> 
> Hello!
> 
> I'm using qooxdoo 0.6.5 (because it is part of Delphi4PHP and I'm have 
> to use D4P for our current project).
> 
> Because of some old existing code I have to submit an HTML form, using a 
> qooxdoo qx.ui.window.Window
> I'd like to attach the Window inside the main html form (generated by 
> the VCL).
> 
> 
> I tried to achieve this using the following Javascript code:
> [code]
>   var d = qx.ui.core.ClientDocument.getInstance();
>   var testwin = new qx.ui.window.Window("This is not a test", 
> "icon/16/apps/accessories-disk-usage.png");
>   var inline = new 
> qx.ui.basic.Inline(document.getElementsByTagName("form")[0].id);
>   testwin.setLocation(50, 105);
>   testwin.setWidth(595);
>   testwin.setHeight(480);
>   inline.add(testwin);
>   d.add(inline);
>   testwin.open(); 
> [/code]
> 
> By using Firebug, I can see, that the window, in fact, is created inside 
> the form element, but it is not shown.
> 
> 
> The DOM of the page looks like this (simplified):
> [code]
> <html>
>     <head>...</head>
>     <body>
>        <form>
>           <table> ... rest of the page ... </table>
>           <!-- Here's the place where I want the window to be -->
>        </form>
>        <!-- Here's the place where the window would be, when I'm not 
> using the object qx.ui.basic.Inline -->
>     </body>
> </html>
> [/code]
> 
> 
> Please let me know if you have any hints for solving this problem.
> 
> Best regards,
> Alex
> 
> 
> ------------------------------------------------------------------------------
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
> 30-Day 
> trial. Simplify your report design, integration and deployment - and focus
> on 
> what you do best, core application coding. Discover what's new with 
> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> 
> 

-- 
View this message in context: 
http://n2.nabble.com/v-0-6-5-How-to-embed-a-Window-into-an-HTML-form-tp3525442p3533663.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to