[qooxdoo-devel] --api-documentation-index-file

2007-09-27 Thread Tobias Koller (GERMO GmbH)
Hi list, I updated my svn today and when I start "make" the following error is displayed: generator.py: error: no such option: --api-documentation-index-file what's that? Thanks Tobias - This SF.net email is spon

Re: [qooxdoo-devel] Using colspan or rowspan in qooxdoo

2007-09-27 Thread Juan Matias Granda
ok! i resolved my problem, thanks!. Regards -- Juan Matias Granda http://www.insulae.com.ar GPG FINGERPRINT:459C 4A2D 330C CB8C 0C44 0C3A 572C CBCA 5457 508B - This SF.net email is sponsored by: Microsoft Defy all challenge

[qooxdoo-devel] Problem using custom resource capability in 0.72

2007-09-27 Thread Mike Rea
Background I've been trying to utilize a custom icon theme in an application. As a proof of concept, I've simply been trying to set up a slightly modified skeleton to use a custom theme that utilizes application-specific icons. The custom theme ("VistaInspirate2" for now) tries to utilize a i

Re: [qooxdoo-devel] nodeId missing in a TreeVirtual

2007-09-27 Thread Derrell Lipman
On 9/27/07, Derrell Lipman <[EMAIL PROTECTED]> wrote: > > Your code you provided didn't call that method, but it's true that you > can't call it on nodes whose parent is not opened. > > I'm trying to decide if the correct solution here is to document that you > can't call nodeToggleOpened() (and mo

Re: [qooxdoo-devel] nodeId missing in a TreeVirtual

2007-09-27 Thread Derrell Lipman
On 9/27/07, dperez <[EMAIL PROTECTED]> wrote: > > > > Now I'm not getting an exception inside nodeToggleOpened because of a > missing nodeId. > Your code you provided didn't call that method, but it's true that you can't call it on nodes whose parent is not opened. I'm trying to decide if the cor

[qooxdoo-devel] Using colspan or rowspan in qooxdoo

2007-09-27 Thread Juan Matias Granda
(first my english is bad, like my qooxdoo knowledge) im coming from HTML+PHP programation and i use so much the option colspan and rowspan to do something like this: [] = 1 cell [][ ][] [][ ] [ ] [][ ][] when i try to do this in Qooxdoo

Re: [qooxdoo-devel] nodeId missing in a TreeVirtual

2007-09-27 Thread dperez
Thanks Derrell, Here is the running code: var mod = tree.getDataModel(), dat = mod.getData(); for (var i = 0; i < dat.length; i++) { var d = dat[i]; if (d && d.columnData && d.columnD

Re: [qooxdoo-devel] nodeId missing in a TreeVirtual

2007-09-27 Thread Derrell Lipman
On 9/27/07, dperez <[EMAIL PROTECTED]> wrote: > > > Thanks Derrell for your quick answer. > What I'm trying to do is on load to select initially an item. > This is the code: > > var mod = tree.getDataModel(), dat = mod.getData > (); > for (var i = 0;

Re: [qooxdoo-devel] nodeId missing in a TreeVirtual

2007-09-27 Thread dperez
Thanks Derrell for your quick answer. What I'm trying to do is on load to select initially an item. This is the code: var mod = tree.getDataModel(), dat = mod.getData(); for (var i = 0; i < dat.length; i++) { var d =

Re: [qooxdoo-devel] nodeId missing in a TreeVirtual

2007-09-27 Thread Derrell Lipman
On 9/27/07, dperez <[EMAIL PROTECTED]> wrote: > > > I have some treevirtual with data in it. > With the debugger I've checked that a node inside a closed node, doesn't > have a nodeId in its node structure. Is this normal? > > I think this didn't use to happen with versions prior to 0.7.2 > Any in

Re: [qooxdoo-devel] how to scoll up large lists, trees, tables to an anker?

2007-09-27 Thread dperez
I use the history facilities (qx.client.History), like it is done in the API viewer, to keep the context (the selected item in the tree) Hope this helps. dperez wrote: > > Is this related to my problem? : As I noticed, if I reload my application, > a tabview page is opened as the same scrollba

Re: [qooxdoo-devel] how to scoll up large lists, trees, tables to an anker?

2007-09-27 Thread dperez
Hi Torsten, You can use this: virtualtree.scrollCellVisible(0, row); westor wrote: > > In my application a have a huge tree. One of my usecases is to open the > trees with a given entry by script and not by userclick. > Open of the trees works like expected for me, but if the entry is outsid

[qooxdoo-devel] nodeId missing in a TreeVirtual

2007-09-27 Thread dperez
Hi, I have some treevirtual with data in it. With the debugger I've checked that a node inside a closed node, doesn't have a nodeId in its node structure. Is this normal? I think this didn't use to happen with versions prior to 0.7.2 Any info will be greatly appreciated. Thanks in advance. Reg

[qooxdoo-devel] how to scoll up large lists, trees, tables to an anker?

2007-09-27 Thread westor
In my application a have a huge tree. One of my usecases is to open the trees with a given entry by script and not by userclick. Open of the trees works like expected for me, but if the entry is outside of the visible erea, how can I scroll down to the item? I need something like anker href. Is t

Re: [qooxdoo-devel] Button in HorizontalBoxLayout problem

2007-09-27 Thread westor
I observed this behaviour too. Not in all cases, but sometimes. Not tested in IE, but in firefox this is not nice looking. Torsten mbazs wrote: > > Hi! > > I'm putting a simple button in a HorizontalBoxLayout and the button shows > up that its edges touch the text, but when I press it, it ju

Re: [qooxdoo-devel] update table after data changed

2007-09-27 Thread Hugh Gibson
> That might be it. I'll give it a try tomorrow and see how it works. > I do know in the same file as where I did make my change there was no > other place to change the font color. So the code you found looks > like it fits my suspicion that it might be an appearance issue. Now > that I think ab

[qooxdoo-devel] How to force a rearrange of a layouts children

2007-09-27 Thread Carsten Harnisch
We are currently working on a module that needs to re-arrange widgets within a layout (=> UI-Designer). Our basic problem is how to force a complete recalculation of a layout and its children ! The basic use-case something as following below : // for docklayouts var widget = ev.target;

Re: [qooxdoo-devel] Possible to show loading screen?

2007-09-27 Thread qooxdoo
Thanks Tobias for your suggestion, it is something that I was planning on doing latter so I'll definitely look at your code. But Christian has the right idea. I have no problem making the raw HTML and JavaScript to simulate a progress bar but can anybody give me a nudge in the right direction on h

Re: [qooxdoo-devel] Serious memory problems in IE7 and 0.7.x

2007-09-27 Thread Sebastian Werner
OK, but this was mentioned in the article. I think the file name was corrupted by wordpress. Sebastian westor schrieb: > Sebastian, I dropped a comment there: > The file name has to be case sensitive: XmlHttpTransport.js instead of > xmlhttptransport.js > Torsten > > > Sebastian Werner wrote:

Re: [qooxdoo-devel] Serious memory problems in IE7 and 0.7.x

2007-09-27 Thread westor
Sebastian, I dropped a comment there: The file name has to be case sensitive: XmlHttpTransport.js instead of xmlhttptransport.js Torsten Sebastian Werner wrote: > > Hi all! > > I have posted a news article related to this topic. Please have a look > here: > http://news.qooxdoo.org/memory-issue

Re: [qooxdoo-devel] update table after data changed

2007-09-27 Thread Jim Hunter
That might be it. I'll give it a try tomorrow and see how it works. I do know in the same file as where I did make my change there was no other place to change the font color. So the code you found looks like it fits my suspicion that it might be an appearance issue. Now that I think about it thoug

Re: [qooxdoo-devel] Possible to show loading screen?

2007-09-27 Thread Tobias Koller (GERMO GmbH)
Oh sorry, i think you’re right ;) Tobias Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von bibliograph Gesendet: Donnerstag, 27. September 2007 09:50 An: Tobias Koller (GERMO GmbH) Cc: qooxdoo Development Betreff: Re: [qooxdoo-devel] Possible to show loading screen?

Re: [qooxdoo-devel] Possible to show loading screen?

2007-09-27 Thread bibliograph
Hi Tobias,I think the poster meant something different: to show a "Loading.." screen during startup, when the classes are being loaded.This can only be done at build time: creating a small div with a message and updating the message between each class file loaded "make source" or in between all (

Re: [qooxdoo-devel] update table after data changed

2007-09-27 Thread Hugh Gibson
> So I forced the color of the row to be a given color but the first > rendering of the table uses a black font, but if you click it then > it changes the fonts to the color that I set. So there is another > place where the font color is set but apparently it's being set in > an appearance and not

[qooxdoo-devel] Issue with mouse click events in IE 6/7...

2007-09-27 Thread Jaikumar C
I am using qooxdoo 0.7.x and am facing issues with event listeners not being invoked on a CanvasLayout in IE. It works fine in Mozilla. I have created buttons in my UI using a Canvas layout which contains a couple of images and a text atom. I register a mouseclick listener to this canvas layout

Re: [qooxdoo-devel] History and frames

2007-09-27 Thread Fabian Jakobs
dperez schrieb: > This is a very easy task. I can do it in the next days > > OK, go ahead. Best Fabian > Fabian Jakobs-2 wrote: > >> I think this is a good idea. We are pretty busy right now so it wont be >> fixed right now. Could you open a bug for this issue so it doesn't get >> lo