Re: [qooxdoo-devel] Further performance improvements planned

2008-01-16 Thread Hugh Gibson
> I got the unpleasant feeling that this might be caused by a change I > introduced in either the _updateRowStyles method or _getRowsHtml in > a patch I submitted and which was comitted in r11003. Ironically, > those changes were meant to make things faster (and from my testing with > small table

Re: [qooxdoo-devel] Dynamic Form Elements created in a For loop

2008-01-16 Thread Aaron Cooper
Perfect Steven, thanks very much Steven M. Cherry wrote: > > You could use an array/object to hold all of your fields: > > var field_array = []; > > for(var i=1; i<=total_field_sets; i++){ > ... > var field = new ftmDataEntryTextfield(...); > if(i<=25){ > ... >

Re: [qooxdoo-devel] Dynamic Form Elements created in a For loop

2008-01-16 Thread Steven M. Cherry
You could use an array/object to hold all of your fields: var field_array = []; for(var i=1; i<=total_field_sets; i++){ ... var field = new ftmDataEntryTextfield(...); if(i<=25){ ... field.setLeft(left_col_booking_ref_x); spl

[qooxdoo-devel] Dynamic Form Elements created in a For loop

2008-01-16 Thread Aaron Cooper
Hi there, I've been playing with this for a day, and the form actually displays correctly, but I am unable to access each new field at a later stage for populating with data in another loop. What I have is a form where the user can insert up to 50 passenger names. Rather than define and add each

[qooxdoo-devel] Unable to build Demobrowser 0.7.3

2008-01-16 Thread kanugula
Hello, I am back to qooxdoo again after a long break. I am impressed by the Demo Browser. I thought I can use this as a template for my design. 1) Downloaded 0.7.3 stable version. 2) Copied the demobrowser folder parellel to skeleton and modified qooxdoo_path. Note: My skeleton build works perf

Re: [qooxdoo-devel] Further performance improvements planned

2008-01-16 Thread Gaetan de Menten
On Jan 16, 2008 4:08 PM, Christian Kolodziej <[EMAIL PROTECTED]> wrote: > Dear Hugh, > > >> we are currently not really pleased with the performance of some > >> (big) tables in our application. For instance there is a table > >> consisting of 15 columns, 2 of them contain icons. Scrolling the > >>

Re: [qooxdoo-devel] 2 questions about the qooxdoo librari

2008-01-16 Thread Hugh Gibson
> 2. I need put color in the text of one cell of the table. How make > for put the color? Create your own renderer for that cell. There are some examples of using cell renderers at http://demo.qooxdoo.org/current/demobrowser/#example~Table_3.html In your case you would override _getCellStyle - h

Re: [qooxdoo-devel] Should shared instances be used for internal qooxdoo operat

2008-01-16 Thread Hugh Gibson
> However, the HorizontalBoxLayout isn't laying out the child after > re-use. > If I show one handler, then select another one, then resize the > application and show the first handler again (re-using the original > instance) then the first handler is shown at its original size > until I > resize

Re: [qooxdoo-devel] Default padding of table cells changed in 0.7.3

2008-01-16 Thread Sebastian Werner
Hi Hugh, there is no public API for this yet. This is also not that easy because of performance issues with other (older) solutions. Sebastian Hugh Gibson schrieb: > One of the changes in revision 10731 was to change the default cell > renderer style padding to 6 px left and right: > > branch

[qooxdoo-devel] Default padding of table cells changed in 0.7.3

2008-01-16 Thread Hugh Gibson
One of the changes in revision 10731 was to change the default cell renderer style padding to 6 px left and right: branches/legacy_0_7_x/qooxdoo/frontend/framework/source/class/qx/ui/table/ cellrenderer/Abstract.js2007-10-31 14:51:03 UTC (rev 10731) @@ -48,7 +48,7 @@ " white-spa

Re: [qooxdoo-devel] Further performance improvements planned

2008-01-16 Thread Christian Kolodziej
Dear Hugh, >> we are currently not really pleased with the performance of some >> (big) tables in our application. For instance there is a table >> consisting of 15 columns, 2 of them contain icons. Scrolling the >> table is not very fast, even scrolling one one row lasts up to 1 >> second. > > Ca

Re: [qooxdoo-devel] Further performance improvements planned for table?

2008-01-16 Thread mshillin
Hugh Gibson wrote: > > > Can you run the Firebug profiler to see what is taking all the time? > > Hugh > I am having similar problems with TreeVitrual (see http://www.nabble.com/TreeVirtual---Severe-performance-problems-%280.7.1-vs.-0.7.3---SVN%29-to14841428.html ) Here is profile data us

[qooxdoo-devel] 2 questions about the qooxdoo librari

2008-01-16 Thread Anabel Espinosa Murcia
Hello, i'm spanish, and my english is very bad, sorry for that.   I have 2 questions about the qooxdoo librari.   1. In the explorer navigator, i make a TabView, and i put the width, but theexplorer navigator not accept the width, and put the widht of the windows. (Infirefox navigator run ok). W

Re: [qooxdoo-devel] Further performance improvements planned for table?

2008-01-16 Thread Hugh Gibson
> we are currently not really pleased with the performance of some > (big) tables in our application. For instance there is a table > consisting of 15 columns, 2 of them contain icons. Scrolling the > table is not very fast, even scrolling one one row lasts up to 1 > second. Can you run the Fi

[qooxdoo-devel] Further performance improvements planned for table?

2008-01-16 Thread Christian Kolodziej
Hello everbody, we are currently not really pleased with the performance of some (big) tables in our application. For instance there is a table consisting of 15 columns, 2 of them contain icons. Scrolling the table is not very fast, even scrolling one one row lasts up to 1 second. If've read a

Re: [qooxdoo-devel] spinner format

2008-01-16 Thread Gaetan de Menten
On Jan 15, 2008 8:42 PM, johnl <[EMAIL PROTECTED]> wrote: > Is it possible to have a spinner show 2 digits all the time? For example > 05 for 5. I'm using spinners to enter a time in an interface, and it > would look a bit nicer this way. Try using the new (available in 0.7.3) numberFormat propert

Re: [qooxdoo-devel] spinner format

2008-01-16 Thread Fabian Jakobs
johnl schrieb: > Is it possible to have a spinner show 2 digits all the time? For example > 05 for 5. I'm using spinners to enter a time in an interface, and it > would look a bit nicer this way. > > Thanks, > > David > > Hi David, you can write your own range manager for the spinner