[qooxdoo-devel] UML extend value MS.NET

2006-10-20 Thread FemalesDo Question
Reprints Bnet a Cnetcom of Cnet Channel or Newscom Mpcom a mysimon Searchcom Tvcom a Horror a Stories readers share scariest frightful of tales helpful researcher consultant am Suzi Turner Trend Micro Worryfree of.St Solitaire a Join jan Posts spent Power wondering any of Public or Profile S

Re: [qooxdoo-devel] Table Events

2006-10-20 Thread Derrell . Lipman
lycovian <[EMAIL PROTECTED]> writes: > Looks like the SelectionModel for a Table fires a "selectionChanged" event. > This is a problem as qx.constant.Event.CHANGESELECTION actually evaluates to > "changeSelection" (it's missing the 'd'). Just a small incongruity that > someone might want to fix.

Re: [qooxdoo-devel] RemoteRequest and waiting for reply, no listener

2006-10-20 Thread Jim Hunter
put your  /* following code */ inside the completed event listener, that's what it's for. That code will not get executed until your request is done.On 10/20/06, DFilzhut <[EMAIL PROTECTED]> wrote: Hi folks,for some special purpose I have to be sure that the code execution followinga RemoteRequest

[qooxdoo-devel] Table Events

2006-10-20 Thread lycovian
Looks like the SelectionModel for a Table fires a "selectionChanged" event. This is a problem as qx.constant.Event.CHANGESELECTION actually evaluates to "changeSelection" (it's missing the 'd'). Just a small incongruity that someone might want to fix. Mike -- View this message in context: htt

[qooxdoo-devel] RemoteRequest and waiting for reply, no listener

2006-10-20 Thread DFilzhut
Hi folks, for some special purpose I have to be sure that the code execution following a RemoteRequest will only proceed when the complete result has arrived and not earlier. So in this case I cannot use a listener to catch the result. Any ideas how to solve this problem? var req = new qx.io

[qooxdoo-devel] ask current

2006-10-20 Thread Got minutes
Dahi or Cube mp Player am Blog Notify Blogger content mean in Send Tuesday Welcome in!Contains or places disposal or writing knowledge advice best writers Specific creation in experience little long in consistent near is.Could a Never Occur Makes of no in Warranties of Effect Contacting am u

Re: [qooxdoo-devel] Iframe an ColorManger

2006-10-20 Thread Jim Hunter
You should be able to get the class name of any _javascript_ object like:s = Obj.classname;You can put any valid HTML (which includes bracketed _javascript_ ) inside an HtmlEmbed, at least I believe I have put JS inside one. But if your URL returns simple qooxdoo objects them why not simply add th

Re: [qooxdoo-devel] Iframe an ColorManger

2006-10-20 Thread taha_
Hi, The pages are a number of jsp with only qooxdoo objects, no html inside. As I have told using the ColorManager method setColorThemeById("qx.theme.color.WindowsLunaGreen") chnage the Iframe theme except a tree border. And I can have the current ColorTheme class of the parent using ColorManager

Re: [qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-20 Thread Hugh Gibson
> qx.OO.changeProperty({ name : "appearance"... That's very interesting. When looking through the code for the default appearance (see the message I posted yesterday - search on "fontObject") I found that colorObject and borderObjects were being used. These explicitly hold references to the

Re: [qooxdoo-devel] Iframe an ColorManger

2006-10-20 Thread Jim Hunter
Setting the theme of the IFrame itself will not change the color of the IFrame contents. You are going to have to make color changes IN the file you are loading. If selecting a menu item loads the page Sales.htm then you are going to have to edit Sales.htm to make color changes. It is a TOTALLY SE

Re: [qooxdoo-devel] Iframe an ColorManger

2006-10-20 Thread taha_
I have a web app with a menubar and I use the Iframe as a container for the call of the url linked to the menu options. And if you have another way to do such thing I will be happy to try it. I can have the color theme of the Iframe parent using the ColorManager method getColorTheme(), this an i

Re: [qooxdoo-devel] Layout trouble

2006-10-20 Thread Jim Hunter
You are going to need a container for the entire app, add the toolbar to it, then create a 'body' container that you also add to the main container and use up all the remaining space (main container - toolbar). Now when you create new windows, add them to the 'body' container, not the app container

[qooxdoo-devel] window menubar

2006-10-20 Thread jamescowan
Hi is it possible to attach a menubar to a window? This code fragement var wdw = new qx.ui.window.Window("Window"); var menubar = new qx.ui.menu.MenuBar; // set up menubar wdw.add(menubar); does not seem to work. James -- View this message in context: http://www.nabble.com/w

Re: [qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-20 Thread Andreas Ecker
Hi Simon, just wanted to say thanks for your ongoing effort of analyzing and measuring memory creep (or maybe leak) issues in qooxdoo. :-) We should definitely put some concise information about memory creep/leak into the wiki. Garbage collection in general is non-trivial. The closed-source/undoc

[qooxdoo-devel] Layout trouble

2006-10-20 Thread Alex D.
Hi folks, i have following problem and i'm really despair of it. My app has look&feel of a MDI-Applikation: at the top menubar, then toolbar, then some kind of  "desktop"(CanvasLayout) where all qooxdoo-windows appear. The main-container box is a VerticalBoxLayout. And it works fine till i try

Re: [qooxdoo-devel] Iframe an ColorManger

2006-10-20 Thread Jim Hunter
My first question is simple, what are you putting IN the IFrame? Is it a complete page that you are loading from disk or are you stuffing code into it on the fly? You have to remember that this is a separate document and if it is a qooxdoo document, it has to load it's own copy of the library and h

Re: [qooxdoo-devel] qooxdoo and firefox extension

2006-10-20 Thread jamescowan
Hi Andreas I found out what the problem was. I was being dim. I was adding qx.js as a script tag within the xul overlay which is the starting point of an extension; I was just following the example extension blindly. This would never work because when loading the xul overlay there is no docume

Re: [qooxdoo-devel] Iframe an ColorManger

2006-10-20 Thread taha_
Hi, Thanks for the quick response :-) I did guess there is somehing like this and did tried to change the color theme in the page loaded in the is frame using the ColorManger : qx.core.Init.getInstance().defineMain(function(){ var th = parent.qx.manager.object.ColorManager.getInstance().getCo

Re: [qooxdoo-devel] Iframe an ColorManger

2006-10-20 Thread Andreas Ecker
Howdy! > I have a page with an iframe inside and when I change the color theme, all > the objects outside the iframe change color and those inside didn't :- > Can any one help me to understand why ? The two documents are pretty much independent and unrelated (in a cross-domain scenario compl

[qooxdoo-devel] Iframe an ColorManger

2006-10-20 Thread Taha Mohammed El Kahlaoui
Hello, I have a page with an iframe inside and when I change the color theme, all the objects outside the iframe change color and those inside didn't :- Can any one help me to understand why ? Thanks - Using Tomcat but need

Re: [qooxdoo-devel] how to auto change backgroundimage size?

2006-10-20 Thread Alex D.
it is http://selfhtml.org/ and not "http://selfthtml.org" thks you for helping me. but "cb.setStyleProperty('background-repeat', 'no-repeat')" is no availability,I have try it... and "http://selfthtml.org" url can not open dperez wrote: Hi, cb.setStyleProperty('background-

Re: [qooxdoo-devel] how to auto change backgroundimage size?

2006-10-20 Thread candy
thks you for helping me. but "cb.setStyleProperty('background-repeat', 'no-repeat')" is no availability,I have try it... and "http://selfthtml.org"; url can not open dperez wrote: > > Hi, > > cb.setStyleProperty('background-repeat', 'no-repeat'); > > It is interesting to use some refere

Re: [qooxdoo-devel] how to auto change backgroundimage size?

2006-10-20 Thread dperez
Hi, cb.setStyleProperty('background-repeat', 'no-repeat'); It is interesting to use some reference about CSS properties, like e.g. http://selfthtml.org, for this kind of things. candy wrote: > > var cb = new qx.ui.layout.HorizontalBoxLayout; > cb.setBackgroundImage("icon/toolbar/TitleBar.png