Re: [qooxdoo-devel] beginner's question

2010-11-22 Thread Mustafa Sak
Take a look to RPC. I am using Derrells great PHP RPC Contribution. As never as easy before to write a server client app. Von meinem iPhone gesendet Am 22.11.2010 um 15:32 schrieb slah : > > > Mustafa Sak-3 wrote: >> >> Don't forget Guilherme. >> >> Of course, many thanks to him and all t

Re: [qooxdoo-devel] beginner's question

2010-11-22 Thread slah
Mustafa Sak-3 wrote: > > Don't forget Guilherme. > > Of course, many thanks to him and all those who help me to start with this > wonderful framework. > > It was a good lesson about layouting, I'm using now HBox, VBox, Grid, etc. > > I've to learn now how to connect to a database, run querie

Re: [qooxdoo-devel] beginner's question

2010-11-22 Thread Gabriel Munteanu
, November 21, 2010 10:46 AM To: qooxdoo-devel@lists.sourceforge.net Subject: Re: [qooxdoo-devel] beginner's question Hello, Why my query is still pending, is there something wrong with it? Regards View this message in context: Re: beginner's question<h

[qooxdoo-devel] beginner's question

2010-11-21 Thread slah
Hi everybody, I'm new in qooxdoo, I generated a sample app and started playing with Application.js I created a window and want to add a button to it, when I add it win.add(...) nothing is show. When I comment the win.add(Button2, ...) evry thing goes fine. Please let me know what's wrong in this c

Re: [qooxdoo-devel] beginner's question

2010-11-21 Thread slah
Hello, Why my query is still pending, is there something wrong with it? Regards -- View this message in context: http://qooxdoo.678.n2.nabble.com/beginner-s-question-tp5758657p5759771.html Sent from the qooxdoo mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] beginner's question

2010-11-21 Thread Mustafa Sak
Don't forget Guilherme. Of you want to use left and top properties so Canvas layout is your choose. Regards Sak :) Von meinem iPhone gesendet Am 21.11.2010 um 20:27 schrieb slah : > > Dear Mustafa, Dear Claus, > it worked with both layouts, I learned a lot for today and I'll invest more > in

Re: [qooxdoo-devel] beginner's question

2010-11-21 Thread slah
Dear Mustafa, Dear Claus, it worked with both layouts, I learned a lot for today and I'll invest more in reading. Thanks for the qooxdoo community. -- View this message in context: http://qooxdoo.678.n2.nabble.com/beginner-s-question-tp5759778p5760837.html Sent from the qooxdoo mailing list arc

Re: [qooxdoo-devel] beginner's question

2010-11-21 Thread Claus Straube
The proplem is,that you can't see a button in your window, right? with this code it should work: --snip-- var win = new qx.ui.window.Window("First Window"); win.setLayout(new qx.ui.layout.VBox(10));// > a window must have a layout to place widgets in it win.setWidth(300); win.setHeigh

Re: [qooxdoo-devel] beginner's question

2010-11-21 Thread Guilherme Aiolfi
Try adding the following line after var win = new qx.ui.window.Window("First Window");: win.setLayout(new qx.ui.layout.Canvas()); On Sun, Nov 21, 2010 at 4:10 PM, slah wrote: > > Dear Mustapha, > > It seems you're right but could you mind telling me how to add a layout to > the window. > > Here

Re: [qooxdoo-devel] beginner's question

2010-11-21 Thread slah
Dear Mustapha, It seems you're right but could you mind telling me how to add a layout to the window. Here's a formatted version of the code. /* Copyright: License: Authors: ***

Re: [qooxdoo-devel] beginner's question

2010-11-21 Thread Claus Straube
Hi, please can you provide this code in a formatted way? Best you put it into http://demo.qooxdoo.org/current/playground/# and send a short link (right upper corner). Sorry, but this is not readable in my mail app... Best regards - Claus Am Sonntag, den 21.11.2010, 00:53 +0100 schrieb slah : >

Re: [qooxdoo-devel] beginner's question

2010-11-21 Thread Mustafa Sak
Slachtar, welcome I guess you have define a Layout for the window widget. Every container, window widget is a container too, needs to set a layout. Regards Sak Von meinem iPhone gesendet Am 21.11.2010 um 09:53 schrieb slah : > Hi everybody, I'm new in qooxdoo, I generated a sample app and s

[qooxdoo-devel] beginner's question

2010-11-21 Thread slah
Hi everybody, I'm new in qooxdoo, I generated a sample app and started playing with Application.js I created a window and want to add a button to it, when I add it win.add(...) nothing is show. When I comment the win.add(Button2, ...) evry thing goes fine. Please let me know what's wrong in t