Re: [qooxdoo-devel] Access one application class instance from another application

2007-08-20 Thread Phaneesh N
Now I have changed my application code to something like this based on your inputs: Main application: qx.Class.define("my.application.Main", { extend : qx.application.Gui, statics : { frameTop: new qx.ui.embed.Iframe("top.html"), frameMain: new qx.ui.embed.Iframe("def

[qooxdoo-devel] qooxdoo-contrib / qxAdmin ?

2007-08-20 Thread frederic
Hello, I have discovered many commits on the qxAdmin project in the SVN dedicated to qooxdoo contributions. What is the goal of this project ? How to use it ? cheers. Frederic -- View this message in context: http://www.nabble.com/qooxdoo-contrib---qxAdmin---tf4301571.html#a12244068 Sent from t

Re: [qooxdoo-devel] Access one application class instance from another application

2007-08-20 Thread thron7
Phaneesh, you need to make accessible the Iframe widgets you create, e.g. through a variable of your "master" Application class, so one Iframe widget can get hold of the other during runtime. Let's suppose you saved all your Iframes in an array "allMyIframes" of your master Application class, the

Re: [qooxdoo-devel] Access one application class instance from another application

2007-08-20 Thread Phaneesh N
Hi, Thanks for the response. Let me explain my problem in detail. I have 1 application with 3 IFrames. I have set 3 different applications to these 3 IFrames. Now, there is a Toolbar in one of the application in a IFrame. On click of the a toolbar button I have to change the application that is

Re: [qooxdoo-devel] Access one application class instance from another application

2007-08-20 Thread dperez
You can try something like this: sghe.udctc.utest.Main.setMainFrame.call("default.html", parent); to set 'this' to window.parent Phaneesh N wrote: > > > Hi All, > I am developing my application in 0.7.1. > I have two applications classes [set to two qx.embed.IFrame]. I wa

Re: [qooxdoo-devel] How to set tree to a particular column of a table(Tree virtual).

2007-08-20 Thread Derrell Lipman
On 8/20/07, hapershield hapershield <[EMAIL PROTECTED]> wrote: > > Hi, > >I am using qooxdoo.7.1 alpha version.How to set tree to a particular > column of a table(Tree virtual). > > I used setTreeColumn() function, but it is not working. > > Please let me know how to set tree in paticular colum

Re: [qooxdoo-devel] Word Wrap in button label text?

2007-08-20 Thread Alexander Back
Hi Juan, Juan José Durán schrieb: > Hi all, > > It seems is not possible to have multiline text in a button, am I right? > overflow property doesn´t seem to help much neither. Yes, wrapping multi-line text this is an open issue. A bug report () alr

Re: [qooxdoo-devel] Time Chooser Component?

2007-08-20 Thread Tobias Koller (GERMO GmbH)
Hi I also searched for a time-chooser-widget but didn't find one. I just created a horizontalBoxLayout and placed 3 spinner like this: HH : MM : SS The ":" are labels ;) Tobias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von asbk Gesendet: Mont

[qooxdoo-devel] Time Chooser Component?

2007-08-20 Thread asbk
Hi All Is there any built-in component available to choose Time just the same way we choose Date using DateChooser Component? For Eg, We can use this time chooser component to get alarms generated in a system between 00.00.00 of 30th June, 2007 to 23.59.59 of 31st July, 2007. Any help is highly

Re: [qooxdoo-devel] Access one application class instance from another application

2007-08-20 Thread dperez
You can try something like this: sghe.udctc.utest.Main.setMainFrame.call("default.html", parent); to set 'this' to window.parent Phaneesh N wrote: > > > Hi All, > I am developing my application in 0.7.1. > I have two applications classes [set to two qx.embed.IFrame]. I wa

[qooxdoo-devel] How to set tree to a particular column of a table(Tree virtual).

2007-08-20 Thread hapershield hapershield
Hi, I am using qooxdoo.7.1 alpha version.How to set tree to a particular column of a table(Tree virtual). I used setTreeColumn() function, but it is not working. Please let me know how to set tree in paticular column. My code is as follows var tree = new qx.ui.treevirtual.TreeVirtual(

Re: [qooxdoo-devel] How to set a ComboBox/Ex to the width of its widest option?

2007-08-20 Thread Dioc
Hello, I’m using qooxdoo 0.7.1. In my application I have a ComboBox that is filled with several qx.ui.form.ListItem objects. I would like to know how to set ComboBox’s width to the width of its widest option (ListItem text). There is no sizeTextFieldToContent method in ComboBox class. Best regar