Re: [qooxdoo-devel] Inspector problems

2010-11-21 Thread Daniel Wagner
Hi ziepf, looks like the user extensions didn't load correctly. Did you use the "Default URIs" button in the options window? Also, make sure Selenium Core and the user extension are accessed using the same protocol as the Inspector itself. Regards, Daniel ziepf schrieb: > Hi, > > I have trie

[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] Form data - managing complex/nested form data

2010-11-21 Thread sub
Thanks for the feedback. I have started down the path of the Object Controller instead of the Form Controller. It's a bit more manual than the Form Controller but it get's the job done nicely. Cheers -- View this message in context: http://qooxdoo.678.n2.nabble.com/Form-data-managing-complex-n

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] Request Header - POST

2010-11-21 Thread Mustafa Sak
I am usually using RPC object for Ajax requests. But I would advise you to don't use req.setRequestHeader("content-type", "ISO-8859-1"); Regards Sak Von meinem iPhone gesendet Am 21.11.2010 um 13:19 schrieb georg : > > Hi Sak, > > thank you very much. > > > But it is normally that the data

Re: [qooxdoo-devel] So called micro optimizations....someone said so....!!!

2010-11-21 Thread Guilherme Aiolfi
Let's see if Stefan is willing to give us the patch :) On Sun, Nov 21, 2010 at 8:59 AM, thron7 wrote: > Guilherme, > > could you try to validate the patch and its performance impact? We won't > be able to get to it for the time being, but if at all it makes sense to > test it while it is still cl

Re: [qooxdoo-devel] So called micro optimizations....someone said so....!!!

2010-11-21 Thread thron7
Guilherme, could you try to validate the patch and its performance impact? We won't be able to get to it for the time being, but if at all it makes sense to test it while it is still close to the trunk. What do you think? If you're willing we should talk a bit about the test setup. Thomas > Th

Re: [qooxdoo-devel] Request Header - POST

2010-11-21 Thread georg
Hi Sak, thank you very much. But it is normally that the data is saved as followed: qx-table cell: ääüüööaaööaaöö HTTP Header POST-Variable: ääüüööaaööaaöö (Content-Type:application/x-www-form-urlencoded, ISO-8859-1) HTTP ResponseContent: ääüüööaaööaaöö MySql-table: ääüüö

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