Re: [qooxdoo-devel] [english 100%] Re: Table hide columns?

2010-02-22 Thread Stefan Meyer
Hello, fine, when i know what should im looking for iw will find it. When you dont want to help me. Only dont answer bye > On Mon, Feb 22, 2010 at 17:00, smisonl...@googlemail.com > > wrote: > > Hello, > how can i h

Re: [qooxdoo-devel] Bind tree controller to a composite container

2010-02-22 Thread MartinWittemann
Hi, sure, the tree model itself is not an array. It should at least hold some additional information on the tree node for example the name or something else. But if the tree node has children, it has to have a property which stores the children and thats an array which you can manipulate. Usually

Re: [qooxdoo-devel] Table hide columns?

2010-02-22 Thread Derrell Lipman
On Mon, Feb 22, 2010 at 17:00, smisonl...@googlemail.com < smisonl...@googlemail.com> wrote: > Hello, > how can i hide some columns? At first time i think to make them to > witdh = 0 but the user can choose them from the contextmenu at the right > of the header and so on. How can i fix this probl

Re: [qooxdoo-devel] Themes standardization

2010-02-22 Thread Petr Kobalíček
Hi Alex, On Mon, Feb 22, 2010 at 2:31 PM, Alexander Steitz wrote: > Hi Petr, > > sorry for the first incomplete mail. > > On Friday February 19 2010 13:45:09 Petr Kobalíček wrote: >> I hope that this is my last message about theming:) > I hope not, since you provided some useful information :) >

[qooxdoo-devel] Table hide columns?

2010-02-22 Thread smisonl...@googlemail.com
Hello, how can i hide some columns? At first time i think to make them to witdh = 0 but the user can choose them from the contextmenu at the right of the header and so on. How can i fix this problem? Thanks for help --

Re: [qooxdoo-devel] Bind tree controller to a composite container

2010-02-22 Thread Dr. Flink
Hi Martin, It's not working for me. The tree controller model is not acting as an array, its a qx.core.Object. However it works on the list controller model, using the IListData interface it makes the model a qx.data.Array. As an example, this wont work because "model.pop is not a function": var

Re: [qooxdoo-devel] Bind tree controller to a composite container

2010-02-22 Thread MartinWittemann
Hi, if you share the same model for your tree and list (I guess you have both of those elements?) you should be able to manipulate the model and everything else should be updated. The children of the tree model are stored in arrays so you can use the commonly known array methods like pop, shift or

Re: [qooxdoo-devel] Script busy error in IE on page refresh

2010-02-22 Thread cbrown
Thank you for the suggestion. I've tried setting up event driven calls to dispose objects in small batches. IE appears to only process some of the callbacks. It seems that after some time period the browser refreshes regardless of whether there are remaining callbacks to be processed, leaving ma

Re: [qooxdoo-devel] IE Protected mode and downloads

2010-02-22 Thread Ken MacDonald
Hi Miron, I had a similar problem with IE with opening/displaying a generated PDF in a separate window in response to a user-initiated event - invoking the "print" button. Eventually, I got it to work in IE in a few cases, and had to bail on the others. I started a number of threads in the forum ab

[qooxdoo-devel] IE Protected mode and downloads

2010-02-22 Thread Miron Brezuleanu
Hi, I have a problem with IE8 and its 'Protected Mode'. The Qooxdoo application I'm working on allows the user to download files (it creates an invisible IFRAME and uses it for the download to prevent reloading the main window). This works fine on most browsers. However, on IE8 with 'Protected Mo

Re: [qooxdoo-devel] Themes standardization

2010-02-22 Thread Alexander Steitz
Hi Petr, sorry for the first incomplete mail. On Friday February 19 2010 13:45:09 Petr Kobalíček wrote: > I hope that this is my last message about theming:) I hope not, since you provided some useful information :) > I'm creating new theme for qooxdoo that is free available on the net > and thi

Re: [qooxdoo-devel] Bind tree controller to a composite container

2010-02-22 Thread Dr. Flink
How can I remove a tree item and also remove the corresponding model from the tree controller? The problem is that when I remove the item it will still be visible in the binded list widget. Thanks! -- View this message in context: http://n2.nabble.com/Bind-tree-controller-to-a-composite-contain

Re: [qooxdoo-devel] Extending a singleton class

2010-02-22 Thread Derrell Lipman
On Mon, Feb 22, 2010 at 03:44, MartinWittemann wrote: > But back to the extending singleton problem. I don't see a clear solution > for extending singletons (have two instances of a singleton is really no > solution!). So I think we should keep the current solution. > See also pending bug 3005.

Re: [qooxdoo-devel] Themes standardization

2010-02-22 Thread Alexander Steitz
Hi Petr, On Friday February 19 2010 13:45:09 Petr Kobalíček wrote: > I hope that this is my last message about theming:) I hope not, since you provided some useful information :) > I'm creating new theme for qooxdoo that is free available on the net > and this message should be summary of my expe

Re: [qooxdoo-devel] Speedup source?

2010-02-22 Thread Jean-Baptiste BRIAUD -- Novlog
On Feb 22, 2010, at 12:13 , thron7 wrote: > > >> Forget the ${dollar}, this is because we are generating qooxdoo application, >> so I have to generate a $. >> This is to help our template engine not take ${TMPDIR} as a variable to >> replace. We are using Velocity, an Apache project. > > And

Re: [qooxdoo-devel] Speedup source?

2010-02-22 Thread thron7
> Forget the ${dollar}, this is because we are generating qooxdoo application, > so I have to generate a $. > This is to help our template engine not take ${TMPDIR} as a variable to > replace. We are using Velocity, an Apache project. And they don't have a way to escape $, like with $${TMPDIR}

Re: [qooxdoo-devel] Speedup source?

2010-02-22 Thread Jean-Baptiste BRIAUD -- Novlog
On Feb 22, 2010, at 10:41 , thron7 wrote: >> You may also use a disk mapped to memory to speed up build time. >> In the config.json, change to your map drive : "CACHE": >> "${dollar}{TMPDIR}/cache", > > This will not help on application start-up at all. > Indeed, but this will help bui

Re: [qooxdoo-devel] Timeig problems?

2010-02-22 Thread Stefan Meyer
Hello, i think, the problem ist the laod of a sublayout. When i click late rin the application on a menu to open the content layout i never have problems again. i load a 3 part layout and load in one a table and a toolbar. . Can it be, that when i load the table first including the data, t

Re: [qooxdoo-devel] Speedup source?

2010-02-22 Thread thron7
> Since many single JS files are loaded in the development version the loading > may take some time at the first cycle. In the next cycles the browser cache > should help you in faster loading. > > The only thing to check for is to clean the browser cache if you do some > major > changes to

Re: [qooxdoo-devel] Speedup source?

2010-02-22 Thread thron7
> You may also use a disk mapped to memory to speed up build time. > In the config.json, change to your map drive : "CACHE": > "${dollar}{TMPDIR}/cache", This will not help on application start-up at all. T. PS: "${dollar}"?!

Re: [qooxdoo-devel] Extending a singleton class

2010-02-22 Thread thron7
> But back to the extending singleton problem. I don't see a clear solution > for extending singletons (have two instances of a singleton is really no > solution!). So I think we should keep the current solution. I'm not sure about this. The issue here is to *derive* from a singleton on the class

Re: [qooxdoo-devel] Extending a singleton class

2010-02-22 Thread MartinWittemann
Hi, we had lately the same issue with testing and singletons. We solve the problem by giving the instance of the singleton to the constructor of the class to test. That way, we did't need to extend the original singleton and could use a mock object. Another good trick for testing singletons is to