Re: [qooxdoo-devel] IE7: dialog takes 15+ seconds to come up

2009-05-26 Thread Jim Hunter
On complex (many controls) pages, IE6 and IE7 are very slow. It's due to the horrible memory management and bad JavaScript engine. But on all other browsers you get very good behavior. Jim On Tue, May 26, 2009 at 9:10 AM, Matthew Gregory < matthew+qoox...@nogsnet.com > wrote: > Hi Dave, > Have

[qooxdoo-devel] SelectBox doesn't work and is partly hidden

2009-05-26 Thread Andreas
Hi, I'm using "qooxdoo 0.8.2 sdk" and calling in Application.js another "Standalone"-class "Test". --- qx.Class.define("test.Application", { extend : qx.application.Standalone, members : { main : function() { // Call super class this.base(argumen

Re: [qooxdoo-devel] Table/TreeVirtual Height Problem (0.8.3pre)

2009-05-26 Thread mshillin
Chris, I took your example and modified it to more closely match one of the places where I am having the problem. Summary of changes: 1. created a new class (TableTest) which extends qx.ui.container.Composite 2. copied the logic from your Application.js into TableTest.js 2. replaced the SplitPa

[qooxdoo-devel] alignX and alignY

2009-05-26 Thread Jean-Noël Rivasseau
Hello, I have a simple Composite widget (container) and I want to place 4 images: * first is centered horizontally and at top vertically * second is centered horizontally and at bottom vertically * third is left horizontally and centered vertically * fourth is right horizontally and centered vert

Re: [qooxdoo-devel] probably found a bug ( minus sign in project name )

2009-05-26 Thread Andreas Ecker
Howdy! > ive just created a new project with this name: "project-abc". it seems like > qx has a problem with the minus sign. This bug is fixed in trunk now (converting illegal chars), see http://bugzilla.qooxdoo.org/show_bug.cgi?id=2417 Thanks for bringing up this issue (again), so it could fina

Re: [qooxdoo-devel] TextField, readOnly and selectable?

2009-05-26 Thread Christian Schmidt
Hi Cajus, I could reproduce the problem with FF 3.0.10 and Safari 3.2.2. With IE7 and Opera 9.64 the selection works. Could you please open a bug report for that issue. Thanks, Chris Cajus Pollmeier schrieb: > Hi Christian, > > sure. Here's a snippet: > > 8<- > var tf = new qx.

Re: [qooxdoo-devel] Table: Custom map and columnVisibilityMenuCreateEnd listener

2009-05-26 Thread Derrell Lipman
On Mon, May 25, 2009 at 3:39 AM, Larouanne Tristan wrote: > With this sample code > > var table = new qx.ui.table.Table(); > table.setTableColumnModel(new qx.ui.table.columnmodel.Resize()); > > The setTableModel throw an exception. > Error: The table column model can only be set once p

[qooxdoo-devel] Tabbing between table cells in 0.8.2

2009-05-26 Thread John Spackman
Hi guys, I'm using a Table component for the first time and can't see how to make it so that tab will move the user between cells for editing; is there a simple solution to this or should I roll my own? If it's a case of rolling my own then I have another question: I've tried calling qx.ui.core.F

Re: [qooxdoo-devel] Table: Custom map and columnVisibilityMenuCreateEnd listener

2009-05-26 Thread Derrell Lipman
On Wed, May 20, 2009 at 10:35 AM, Larouanne Tristan wrote: > I've just put an alert in the event handler function. > The alert is shown when the page are loaded, not when I click on the > Column Visibility Menu. > > var tableModel= new qx.ui.table.model.Simple(); > tableModel.setColumn

Re: [qooxdoo-devel] IE7: dialog takes 15+ seconds to come up

2009-05-26 Thread Matthew Gregory
Hi Dave, Have a look at this paragraph: http://qooxdoo.org/documentation/0.8/enterprise_application_development#initialize_incrementally If you have a complicated page such as this, consider creating all except the first tabs blank, and then only create the contents for the other tabs as needed.

Re: [qooxdoo-devel] Inline(page flow) and 100% width

2009-05-26 Thread Larouanne Tristan
Oh, thx. That perfectly works. Christian Schmidt a écrit : > Hi Larouanne, > > I'm not sure, but I think you have to change the default layout from > your isle. > > Could you please try this: > isle.setLayout(new qx.ui.layout.Canvas()); > isle.add(table, {edge: 0}); > > Cheers, > Chris > > Laro

[qooxdoo-devel] Inline(page flow) and 100% width

2009-05-26 Thread Larouanne Tristan
Hi, I have a qx.ui.table.Table in an inline element (http://qooxdoo.org/documentation/0.8/ui_inline#page_flow) My "Isle" is a div with 100% in width. How to set the table to take 100% of the isle ? Ps: I've set the dynamicX/dynamicY to true when I creating the qx.ui.root.Inline. No change. --

Re: [qooxdoo-devel] Table status bar

2009-05-26 Thread kauffman
Done. Thanks for replying. Alexander Back wrote: > > Hi John, > > On Tuesday 19 May 2009 kauffman wrote: >> Isn't it odd that the status bar isn't updated when there are no rows >> left >> in the table? For example, I have 4 rows in my table and then I clear >> them >> all with one call to rem

[qooxdoo-devel] Table/TreeVirtual Height Problem (0.8.3pre)

2009-05-26 Thread mshillin
I am using Qooxdoo 0.8.3-pre (updated as of last week) as of revision 17204, the preferred height of a table is hard coded to 400 pixels (in Pane.js) See: http://bugzilla.qooxdoo.org/show_bug.cgi?id=1476 Without defining a specific pixel height, how do I get a table (or TreeVirtual) to scale co

[qooxdoo-devel] How to use qxh locator - Simulator contribution

2009-05-26 Thread Cecilla Müller
Hi, I'm using Selenium with the 0.1 version of the qooxdoo user extension to test a RAP application. I would like to use the qxh locator, but I just don't understand how to use it properly. The examples I find use only the properties "label" and "page" e.g. testing http://demo.qooxdoo.org/0.7.

Re: [qooxdoo-devel] How to use qxh locator - Simulator contribution

2009-05-26 Thread Daniel Wagner
Hi, the qxh locators work with the objects of the qooxdoo application, not DOM objects. The qxh locator steps are explained in the wiki[1], but to answer your question, yes, you can locate qooxdoo objects using their class names or any of their properties. Check out the qooxdoo application in

Re: [qooxdoo-devel] Inline(page flow) and 100% width

2009-05-26 Thread Christian Schmidt
Hi Larouanne, I'm not sure, but I think you have to change the default layout from your isle. Could you please try this: isle.setLayout(new qx.ui.layout.Canvas()); isle.add(table, {edge: 0}); Cheers, Chris Larouanne Tristan schrieb: > Hi, > > I have a qx.ui.table.Table in an inline element >

Re: [qooxdoo-devel] TextField, readOnly and selectable?

2009-05-26 Thread Sebastian Werner
This has nothing todo with bug 1530 IMHO. Sebastian 2009/5/26 Roman Schmid > Hi > > As far as I can recall, similar behavior has been reported for Labels. > Could be related to this: http://bugzilla.qooxdoo.org/show_bug.cgi?id=1530 > > > > Cajus Pollmeier wrote: > > Hi Christian, > > > > sure.

[qooxdoo-devel] IE7: dialog takes 15+ seconds to come up

2009-05-26 Thread dmbaggett
I have a somewhat complex dialog box that I use for program settings. There's a list view on the left and a tab control on the right. For each entry in the list, there's a separate copy of the tab control. There are four tabs in each tab control. So there are a total of 16 tab panes. (Of course on

Re: [qooxdoo-devel] contextMenu event doesn't fire in IE

2009-05-26 Thread dmbaggett
I spent some time debugging this. It appears that the Scoller's focus indicator is stealing the right click event and sending a cellClick event. If I disable the focus indicator with table.getPaneScroller(0).setShowCellFocusIndicator(false); Then my contextMenu events work fine. I'm also cur

Re: [qooxdoo-devel] TextField, readOnly and selectable?

2009-05-26 Thread Roman Schmid
Hi As far as I can recall, similar behavior has been reported for Labels. Could be related to this: http://bugzilla.qooxdoo.org/show_bug.cgi?id=1530 Cajus Pollmeier wrote: > Hi Christian, > > sure. Here's a snippet: > > 8<- > var tf = new qx.ui.form.TextField(); > tf.set( { >

Re: [qooxdoo-devel] TextField, readOnly and selectable?

2009-05-26 Thread Cajus Pollmeier
Hi Christian, sure. Here's a snippet: 8<- var tf = new qx.ui.form.TextField(); tf.set( { readOnly : true, selectable : true }); tf.setValue("Select me"); this.getRoot().add(tf); 8<- The text is not selectable with the mouse. If you remove "readOnly", it is

Re: [qooxdoo-devel] Looking for a Better Approach to Retrieving Trunk Versions of Qooxdoo

2009-05-26 Thread Gene Amtower
Just to close this thread, I thought I should post the final copies of my scripts that solved my python version conflict - thanks to the help of Thomas and Derrell. You guys are absolutely lifesavers when it comes to Qooxdoo users! To summarize the python situation, I have Python 2.3.4 installed

Re: [qooxdoo-devel] Thanks qooxdoo team!

2009-05-26 Thread thron7
Thanks, Roman! - Consider adding a short summary and link to the article on our Real Life Examples wiki page (http://qooxdoo.org/community/real_life_examples). Way to go! Thomas Roman Schmid wrote: > Hello Developers > > I successfully finished my first qooxdoo project and I have to say that

Re: [qooxdoo-devel] contextMenu event doesn't fire in IE

2009-05-26 Thread dmbaggett
Hi Jonathan, OK, this is really weird, as I can still reproduce it just by going here: http://demo.qooxdoo.org/devel/demobrowser/index.html#table~Table_Events.html I'm using IE7 (7.0.5730.11) under XP. I noticed something even stranger: it depends on *which column* of the table I click in: if

Re: [qooxdoo-devel] contextMenu event doesn't fire in IE

2009-05-26 Thread dmbaggett
BTW, the same behavior applies to the current demo browser (0.8.2). It's not just in the devel version. Dave Hi Jonathan, OK, this is really weird, as I can still reproduce it just by going here: http://demo.qooxdoo.org/devel/demobrowser/index.html#table~Table_Events.html I'm using IE7 (7.0.

Re: [qooxdoo-devel] TextField, readOnly and selectable?

2009-05-26 Thread Christian Schmidt
Hi Cajus, could you please send a code snipped to reproduce this. Thanks, Chris Cajus Pollmeier schrieb: > Hiho, > > is it possible to get a TextField like widget that is not modifyable but > selectable? If I set "selectable" to true and "readOnly" to true, the widget > is not taking any mouse

Re: [qooxdoo-devel] Thanks qooxdoo team!

2009-05-26 Thread Roman Schmid
Hi Matthew > TBH, I'm suprised by this. Many people have most of thier problems when > they first start, mainly due to the idea of the generator. It is > brilliant, powerful and elegant, just a little alien to some people. > You've gotten me curious now, what programming background did you come

Re: [qooxdoo-devel] Thanks qooxdoo team!

2009-05-26 Thread Stéphane
Screenshots looks pretty good !! Nice to see ! -- Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers & brand creativity professionals. Meet the minds behind Google Cr

Re: [qooxdoo-devel] Thanks qooxdoo team!

2009-05-26 Thread Matthew Gregory
Roman Schmid wrote: > Hello Developers > > I successfully finished my first qooxdoo project and I have to say that > it was a joy to use this framework. Glad you got on well and it's always nice to hear good feedback (even as just a community member). > I had the impression that it was > really

Re: [qooxdoo-devel] Problems with background and selection color

2009-05-26 Thread Andrea Venturini
Thanks, for fast answer. Default color application is "background-application" : "#DFDFDF" (modern theme). If I change it in whatever else color it normally change but EVERY text inside text field, if selected with mouse, become blue with white background, so a little illegible. I hope to be

Re: [qooxdoo-devel] probably found a bug ( minus sign in project name )

2009-05-26 Thread Matthew Gregory
Fabian pointed out the reason orriginally but I'll echo it here just to refresh people. When the namespace "project-abc" is refered to in JS, it assumes you mean project MINUS abc. This is why you get that error. Andreas G. wrote: > similiar topic found here: > http://n2.nabble.com/Qooxdoo-not-w

[qooxdoo-devel] Thanks qooxdoo team!

2009-05-26 Thread Roman Schmid
Hello Developers I successfully finished my first qooxdoo project and I have to say that it was a joy to use this framework. I had the impression that it was really easy to get started, thanks to the helpful community, good API docs and the intuitive/concise software-design! A big kudos to all th

Re: [qooxdoo-devel] contextMenu event doesn't fire in IE

2009-05-26 Thread Jonathan Weiß
Hello Dave! If you look at the Table Events demo in the demobrowser, you will see a difference in behavior between Firefox 3.1/3.5 and IE7. In FF, the event generated by a right click is listed in the events log as contextMenu. In IE, it is cellClick. The context menu comes up in both cas

Re: [qooxdoo-devel] Focus on table with IE

2009-05-26 Thread Roberto Frisina
Hi Alexander, I've just create a new report bug (bug 2420) on bugzilla. Regards, Roberto Frisina Alexander Back ha scritto: Hi Roberto, On Monday 25 May 2009 Roberto Frisina wrote: I've a problem with focus table on IE. After the page is load, if I double click on a row with Firefox, th

[qooxdoo-devel] TextField, readOnly and selectable?

2009-05-26 Thread Cajus Pollmeier
Hiho, is it possible to get a TextField like widget that is not modifyable but selectable? If I set "selectable" to true and "readOnly" to true, the widget is not taking any mouse focus. Greetings, Cajus -- Register No