Re: [qooxdoo-devel] localization features

2006-02-24 Thread gmcms
Hi, You're probably right, but I'm not sure that there is only one way of thinking, it depends really on what you want to do. The problem is to define the objectives to explain a technic exposed. In general, I think that the excess is not good whatever domain we are speeking. When we look at a si

[qooxdoo-devel] Tree with icons

2006-02-24 Thread Oliver Vogel
@ Hugh Hi Hugh! i readed (is readed the past of read - i hope ;-) your code snipplet Tree with icons. don't you think, these solution is easier than to derive a new class and create a new property? var t = new QxTree("Root"); t.getIconObject().setAppearance("tree-folder-desktop

[qooxdoo-devel] Tree with user-defined icons

2006-02-24 Thread Oliver Vogel
Hi Sebastian! here are the promised (and long awaited) patches for the tree. with this patches it is possible (like it was in 0.1.4) to have a user-defined icon for every node of the tree. i also have to change the demo, because you renamed the pictures and so the "old" ones are not longer avail

Re: [qooxdoo-devel] localization features

2006-02-24 Thread Ben Alex
gmcms wrote: I think that it's not the purpose of qooxdoo to handle i18n. It's the purpose of the server side (php) to check for the right language and prepare the web page with all the corresponding vocabulary. It's easy to do with a templating system such as the good one TBS. I'm not sure th

Re: [qooxdoo-devel] Authors of qooxdoo documents

2006-02-24 Thread Hugh Gibson
> > It seems to have sorted itself out. At one point I saw all of the > > fixed text from the snippets page on every snippet. > > Yes I have changed this. Thanks. Hugh --- This SF.Net email is sponsored by xPML, a groundbreaking scripting la

[qooxdoo-devel] QxListView Question

2006-02-24 Thread Michael Wilson
Similar to iTunes (and a hundred other apps), is it possible to multi-select a QxListView and then right-click to open a popup menu? I want to mutli-select some rows then pop-up a tagging dialog to update information on the selected rows. Is this possible with the current toolset? Mike --

Re: [qooxdoo-devel] qooxdoo features

2006-02-24 Thread gmcms
I made a lot of tests during the day and I think that I can be more accurate now. I think that it's not the purpose of qooxdoo to handle i18n. It's the purpose of the server side (php) to check for the right language and prepare the web page with all the corresponding vocabulary. It's easy to do w

[qooxdoo-devel] Dispatch of a list item SetLabel event to parent combo box

2006-02-24 Thread Laurent Donstetter
Hi,   I tried a piece of code that updates QxListItem's text property. When the item is the currently selected item, this update should trigger the update of the text shown as selected within the combobox and it doesn't seem to be done. If I pop down the items, the correctly updated label sh

[qooxdoo-devel] Re: Loading Progress Bar

2006-02-24 Thread SChidambaram
Hi, I tried using the splash pane, but it does not get loaded before all the widgets gets loaded. It gets displayed once all the widgets are visible in the browser. Am using it like   window.application.main = function()     {       var doc = this.getClientWindow().getClientDocument();    

[qooxdoo-devel] Can't find how to set multiline(html) QxLabel's width

2006-02-24 Thread Laurent Donstetter
Hi,   I have a QxLabel inside a QxFieldSet. When I insert html tags into my QxLabel (for example just a to insert a line break), the next line overflows parent QxFieldSet on the right.   If I try with a QxText or QxHtml instead, it seems that heights are not computed automatically as QxTex

[qooxdoo-devel] minimal qooxdoo

2006-02-24 Thread Oliver Vogel
hi all! i need a "minimal qooxdoo" - page (inside this page is only a report). it is faster and easier to create a "real" html-page with a table and 1-2 pics in it than creating this page with qooydoo itself. But now i have a problem the page has scrollbars, the right mouseclick opens the con

[qooxdoo-devel] Manually deselecting within a combo box

2006-02-24 Thread Laurent Donstetter
Hi all,   I found deselection is possible programmatically within a combo with a .setSelected(null) but how can one deselect manually with a combo ? Although I know this is not standard behavior, users often want to be able to deselect with combos.   Thx, Laurent.     Laurent Donstetter -

Re: [qooxdoo-devel] Export vars

2006-02-24 Thread Sebastian Werner
gmcms schrieb: A value entered in a field managed by qooxdoo can't be used outside qooxdoo ? The field is just a typical input field. You can get it, as explained using getValue of the field instance, or for example you can also do: myField.setHtmlProperty("id", "myFieldId"); later you can

Re: [qooxdoo-devel] Export vars

2006-02-24 Thread gmcms
A value entered in a field managed by qooxdoo can't be used outside qooxdoo ? -- View this message in context: http://www.nabble.com/Export-vars-t1180710.html#a3108890 Sent from the qooxdoo-devel forum at Nabble.com. --- This SF.Net email is

Re: [qooxdoo-devel] Accessibility question

2006-02-24 Thread Sebastian Werner
gmcms schrieb: Hi all, What is the theory of qoodoo about accessibility on brower without javascript please ? Without javascript you just have an empty screen. All qooxdoo content is generated through javascript. You can add a noscript-block to your site, where you include static content, but

Re: [qooxdoo-devel] Export vars

2006-02-24 Thread Sebastian Werner
gmcms schrieb: Hi all, Is it possible to export vars from qooxdoo. I take an exemple : If I use qooxdoo to build a login interface with a login and password fields and whant to take the fields contents and compute them with php to look at a sqlite database, is there any functions to cleanly expor

Re: [qooxdoo-devel] Drag

2006-02-24 Thread Sebastian Werner
Fabio Prada schrieb: hi, tanks for this great work!! I've to recode an aplication fom dynapi to qooxdoo. do you ave a suggetion: how to drag a QxAtom or a QxTerminator? With drag you mean to move the object around? In my opinion this is easy: * add mousedown, mousemove, mouseup listeners * a

[qooxdoo-devel] Drag

2006-02-24 Thread Fabio Prada
hi, tanks for this great work!! I've to recode an aplication fom dynapi to qooxdoo. do you ave a suggetion: how to drag a QxAtom or a QxTerminator? Fabio --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that e

[qooxdoo-devel] Export vars

2006-02-24 Thread gmcms
Hi all, Is it possible to export vars from qooxdoo. I take an exemple : If I use qooxdoo to build a login interface with a login and password fields and whant to take the fields contents and compute them with php to look at a sqlite database, is there any functions to cleanly export the fields ? T

[qooxdoo-devel] Accessibility question

2006-02-24 Thread gmcms
Hi all, What is the theory of qoodoo about accessibility on brower without javascript please ? -- View this message in context: http://www.nabble.com/Accessibility-question-t1180684.html#a3106985 Sent from the qooxdoo-devel forum at Nabble.com. -

Re: [qooxdoo-devel] Padding QxToolBarButton

2006-02-24 Thread Til Schneider
Sebastian Werner schrieb: You can define another appearance. The padding in this case is controlled by the state appearance. You only way to change it, is to redefine the appearance. Please take a look at script/themes/appearance/default/theme.js It works. Thanks! --

Re: [qooxdoo-devel] qooxdoo features

2006-02-24 Thread Sebastian Werner
gmcms schrieb: Have you ever tried QxHtml or QxText? You must use dimensions for these objects as they does not support auto-sizing. No. In fact as I said, I use qooxdoo since 1 day. Yeah, port this library to qooxdoo would be really welcome. Heuuu ... I can give the code, but port ...?? For

Re: [qooxdoo-devel] qooxdoo features

2006-02-24 Thread gmcms
> Have you ever tried QxHtml or QxText? You must use dimensions for these > objects as they does not support auto-sizing. No. In fact as I said, I use qooxdoo since 1 day. > Yeah, port this library to qooxdoo would be really welcome. Heuuu ... I can give the code, but port ...?? For the moment

Re: [qooxdoo-devel] listview selection

2006-02-24 Thread Sebastian Werner
Yue schrieb: Hi, Could anyone tell me how to catch the listview selection change event? There is a getManager method in QxTree, which returns a selection manager. But there appears to be no such method in QxListView. Neither example nor test shows how to catch the event. The manager is in

Re: [qooxdoo-devel] listview selection

2006-02-24 Thread Yue
Ah I just got the answer myself. It's QxListView.getPane().getManager() that returns the selection manager the method QxTree.getmanager() returns. >Hi, > >Could anyone tell me how to catch the listview selection change event? > >There is a getManager method in QxTree, which returns a selectio

[qooxdoo-devel] listview selection

2006-02-24 Thread Yue
Hi, Could anyone tell me how to catch the listview selection change event? There is a getManager method in QxTree, which returns a selection manager. But there appears to be no such method in QxListView. Neither example nor test shows how to catch the event. Regards, Yue ---

Re: [qooxdoo-devel] Padding QxToolBarButton

2006-02-24 Thread Sebastian Werner
Til Schneider schrieb: Is there any possibility to set the padding of a QxToolBarButton? setPadding seems to be ignored... Code example: Take "source/demo/example/ToolBar_1.html" and add the following line after line 92: o.setPadding(100); You can define another appearance. The padding

Re: [qooxdoo-devel] qooxdoo features

2006-02-24 Thread Sebastian Werner
gmcms schrieb: QxAtom writes the generated widget to the layout. What exactly to you mean? In fact I have to understand how to simply put a long html text in a window generated by qooxdoo without having to use QxAtom (if it's possible). Have you ever tried QxHtml or QxText? You must use dimens

[qooxdoo-devel] Padding QxToolBarButton

2006-02-24 Thread Til Schneider
Is there any possibility to set the padding of a QxToolBarButton? setPadding seems to be ignored... Code example: Take "source/demo/example/ToolBar_1.html" and add the following line after line 92: o.setPadding(100); --- This SF.Net ema

Re: [qooxdoo-devel] qooxdoo features

2006-02-24 Thread gmcms
> QxAtom writes the generated widget to the layout. What exactly to you > mean? In fact I have to understand how to simply put a long html text in a window generated by qooxdoo without having to use QxAtom (if it's possible). > We have many more things in our pipeline. No doubt on that fact, I ju

[qooxdoo-devel] Wikipedia Entry wanted!

2006-02-24 Thread Sebastian Werner
Hi! As we have updated our feature (http://qooxdoo.oss.schlund.de/documentation/features) and benefits (http://qooxdoo.oss.schlund.de/documentation/benefits) documents it would be nice if someone with good english knowledge and wikipedia experience could add an wikipedia entry for qooxdoo. I'

Re: [qooxdoo-devel] Patch to QxLabel

2006-02-24 Thread Sebastian Werner
Til Schneider schrieb: The current implementation of QxLabel doesn't allow centered or right-aligned text. It is possible to use a QxAtom instead and set "horizontalChildrenAlign" to "center". But this has two disadvantage: First a QxAtom is little bit oversized if you just want to show a tex

[qooxdoo-devel] Patch to QxLabel

2006-02-24 Thread Til Schneider
The current implementation of QxLabel doesn't allow centered or right-aligned text. It is possible to use a QxAtom instead and set "horizontalChildrenAlign" to "center". But this has two disadvantage: First a QxAtom is little bit oversized if you just want to show a text and second a QxAtom ha

[qooxdoo-devel] Documentation Hints

2006-02-24 Thread Sebastian Werner
Hi! If you have code inside our pages, please be sure to remove any optional newlines in pre-blocks, as this looks bad. For example instead of first line of code second line of code third line of code please write: first line of code second line of code third line of code This look

Re: [qooxdoo-devel] Debug console

2006-02-24 Thread Til Schneider
Now in the snippets at http://qooxdoo.oss.schlund.de/snippets/newlines-in-build-files Thanks. I tried this locally, but it only put a newline after each function which makes it difficult to set breakpoints within a function. Any hints on how to preserve every newline? Functions should look

Re: [qooxdoo-devel] qooxdoo features

2006-02-24 Thread Sebastian Werner
gmcms schrieb: If I can give my opinion (a 1 day user) : - you made a good job Thanks :) - your job differs from the others because of javascript to use the API. I can't say if it's a silver bullet or a weakness. My first impression was that I prefer the dojo approach, but if I compare to doj

Re: [qooxdoo-devel] No source release?

2006-02-24 Thread Sebastian Werner
Hugh Gibson schrieb: In writing a new snippet I discovered that you haven't done a source release. This is normal for most projects, so people don't have to download from CVS to get the source code. Is it possible to add that for 0.5? It would just be a zip up of a clean head checkout. Mhh,

Re: [qooxdoo-devel] Authors of qooxdoo documents

2006-02-24 Thread Sebastian Werner
Hugh Gibson schrieb: If it's possible to create an auto-referrer that would be better. Good idea. You will have to do it - I'm not familiar enough with the system yet. I think this is not possible in textpattern ;) A question: how do you prevent code snippets from using the main snippets

Re: [qooxdoo-devel] Debug console

2006-02-24 Thread Hugh Gibson
> Normally all newlines in the compiled qooxdoo.js are removed. This > makes it difficult to debug the qooxdoo code, since you get a stack > trace that points always to the same single line. Now in the snippets at http://qooxdoo.oss.schlund.de/snippets/newlines-in-build-files I tried this loca

Re: [qooxdoo-devel] Authors of qooxdoo documents

2006-02-24 Thread Hugh Gibson
> > If it's possible to create an auto-referrer that would be better. > > Good idea. You will have to do it - I'm not familiar enough with the system yet. > > A question: how do you prevent code snippets from using the main > > snippets template? > > I'm not sure if I understand what you mean.

[qooxdoo-devel] No source release?

2006-02-24 Thread Hugh Gibson
In writing a new snippet I discovered that you haven't done a source release. This is normal for most projects, so people don't have to download from CVS to get the source code. Is it possible to add that for 0.5? It would just be a zip up of a clean head checkout. Hugh

Re: [qooxdoo-devel] qooxdoo features

2006-02-24 Thread gmcms
If I can give my opinion (a 1 day user) : - you made a good job - your job differs from the others because of javascript to use the API. I can't say if it's a silver bullet or a weakness. My first impression was that I prefer the dojo approach, but if I compare to dojo, the widgets are faster on s