[qooxdoo-devel] How to add events to an inherited class?

2006-07-05 Thread Alee
Hello, I have made a class that inherits QxWindow and resembles Windows' MessageBox function. I tried adding the events(on the buttons) in the contructor by writing btn.addListener(...) but it doesn't seem to work. Any other ways of doing it? Regards, Ali -- View this message in context: http

[qooxdoo-devel] Modal window doesn't block the UI

2006-07-05 Thread Alee
Hello, Create a button and upon it's 'execute' event, show a modal window. Now, run it and click the button. It will bring a modal window infront of you. Things may seem working pretty well. But if you try pressing space bar, after clicking the button, it will be pressed and bring another modal w

Re: [qooxdoo-devel] Listview Data Value

2006-07-05 Thread sharmaprateek
Thanks Everyone for a quick and kind response! :) -- View this message in context: http://www.nabble.com/Listview-Data-Value-tf1896111.html#a5193400 Sent from the qooxdoo-devel forum at Nabble.com. Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly

Re: [qooxdoo-devel] How to set Color Theme..

2006-07-05 Thread sharmaprateek
Help...! Anyone..! Please!!! -- View this message in context: http://www.nabble.com/How-to-set-Color-Theme..-tf1895329.html#a5193393 Sent from the qooxdoo-devel forum at Nabble.com. Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integr

Re: [qooxdoo-devel] Lack of Time to "render" DOM

2006-07-05 Thread ACampelo
Andreas, thanks by your attention. In a first moment, I thinked Qooxdoo like another JS library, but now I'm understanding what really is: a great and wonderful software engineer work to assemble an amazing DOM Framework - like Backbase. Congratulations! Now my doubt loss your sense. I'm studyi

Re: [qooxdoo-devel] Listview Data Value

2006-07-05 Thread ACampelo
Sharmaprateek, I had the same problem yesterday and I solved in this way: First, the code where I load the source array.: for (var i = 0; i < nodesXML.length; i++) { Lines.push( { id : { text : nodesXML[i].childNodes[0].firstChild

[qooxdoo-devel] QxListView Don't Render

2006-07-05 Thread ACampelo
Hi, I'm studiyng Qooxdoo and something strange happens with me. If I change de example file ListView_2.html in the looping where the array is loaded: > for (var i=0; i<15; i++) and the height of the QxListView: > lv.setHeight(200); Everything works fine. BUT, if I change the Loop: > for (va

Re: [qooxdoo-devel] Listview Data Value

2006-07-05 Thread Derrell . Lipman
Christian Boulanger <[EMAIL PROTECTED]> writes: > lv.addEventListener('click', function(e){ > >var row = this.getPane().getSelectedItems()[0]; > alert ("ID = " + row.id.text); > },this); Sebastian, Andreas, et al, This seems silly. The fact that there is a ListViewPane object embedded i

[qooxdoo-devel] New Tutorial: Rapid Application Development with PHP QxBuilder and qooxdoo data manager extensios

2006-07-05 Thread Christian Boulanger
Hello, I put a new tutorial on the qooxdoo site which shows the usage of PHP QxBuilder and the form support called "qooxdoo Data Manager Extensions". Both scripts support qooxdoo 0.5.x and its "free-ria" fork: http://qooxdoo.org/documentation/developer/phpqxbuilder_and_data_manager_extensions

Re: [qooxdoo-devel] Listview Data Value

2006-07-05 Thread Christian Boulanger
Hello sharmaprateek, lv.addEventListener('click', function(e){ var row = this.getPane().getSelectedItems()[0]; alert ("ID = " + row.id.text); },this); sharmaprateek schrieb: > Hi, > > I am using a simple listview control in one of my apps.. I am able to attach > a handler to it.. but I am

[qooxdoo-devel] Listview Data Value

2006-07-05 Thread sharmaprateek
Hi, I am using a simple listview control in one of my apps.. I am able to attach a handler to it.. but I am not able to retrieve the current selected row.. I have tried a lot of stuff but nothing helps.. I am pasting the code snippet that will tell u wat all i have tried.. lv.addEventList

Re: [qooxdoo-devel] ListView selection

2006-07-05 Thread sharmaprateek
Dont be sorry.. that code was of good help to me! :-) No piece of info goes vain :D.. thanks! -- View this message in context: http://www.nabble.com/ListView-selection-tf1258230.html#a5184412 Sent from the qooxdoo-devel forum at Nabble.com. Using Tomcat but need to do more? Need to support we

[qooxdoo-devel] How to set Color Theme..

2006-07-05 Thread sharmaprateek
Hi, I m a newbie to qooxdoo and I am confused at a point.. please help me out.. though it must be simple to do but me being a dumbo and qooxdoo being without documentation, i am stuck! I want to set the default color of the page to this: "Color Theme: Operating System Default" This is the sam

[qooxdoo-devel] How to completely remove qx.ui.window.Window ?

2006-07-05 Thread Kirill Balyasnikov
After pressing close button in window it just become hidden, but what is the best way to completely remove(destruct) window from browser and call it's dispose method? Kirill Balyasnikov Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-in

[qooxdoo-devel] QxListView question

2006-07-05 Thread Chris Borkert
I am attempting to set QxListView columns at runtime, but have been unsuccessful. Is there a way to set the columns outside of the constructor? This has worked for setting the data elements (inside a QxListView prototype extension) this._data = [...], however this._columns = {...} has been