Re: [qooxdoo-devel] English short date format wrong

2007-03-13 Thread Jim Hunter
I think the issue is in the en.xml file in the locale folder. The short date setting is: M/d/yy and I believe it should be: d/M/yy I have no

Re: [qooxdoo-devel] Autosizing HtmlEmbed?

2007-03-13 Thread Jim Hunter
I think the problem is that HtmlEmbeds can't calculate the height of their html contents. You are going to have to manually set their heights in order for them to flow correctly. You might try placing the HtmlEmbeds inside an Atom and setting the Atoms height to auto and the width to 100%. This mi

Re: [qooxdoo-devel] Problems with Events

2007-03-13 Thread Jim Hunter
Instead of using the getValue() on the field, try using getComputedValue(). The 'value' of the control does not get set until the focus is lost. the function getComputedValue() returns the current content of the field. For the second question, I think you can simply call the okButton.execute() met

Re: [qooxdoo-devel] Delphi 4 PHP

2007-03-13 Thread Chris Banford
Thanks for the information Jim -- I will definitely give it a whirl, as it sounds like exactly the thing that would make life much nicer (if it works well). Nice to know that they're trying to get it out for the end of this month :-) -Chris Jim Hunter wrote: Delphi 4 PHP is not yet released,

Re: [qooxdoo-devel] What are the required modules for a custom build?

2007-03-13 Thread sub
Hugh Gibson wrote: > > The default value for APPLICATION_COMPLETE_BUILD is false which leaves > out classes you don't use. > Thanks for clarifying things for me. Each of the Makefiles for the apps that come with the sdk (0.6.6) have the flag APPLICATION_COMPLETE_BUILD set to true. If I run

Re: [qooxdoo-devel] bug in feedreader-demo

2007-03-13 Thread Hugh Gibson
> it seems, that the table stips all data witch are not needed by the > talble presentation, and therefore also the id has gone... Ah, looking at source code I can see that - in SimpleTableModel._mapArray2RowArr. Converts a map to an array. You could easily use RemoteTableModel - derive a class

Re: [qooxdoo-devel] bug in feedreader-demo

2007-03-13 Thread Cornelius Weiss
Hi Hugh, tnx for your replay. What you sugest, is exactly what i do. But if i do a var selectedEntry = this._table.getSelectionModel().getAnchorSelectionIndex(); var p_serie = this._tableModel.getRowDataAsMap(selectedEntry); my p_serie only contains the columns, witch are also present in the

[qooxdoo-devel] Delphi 4 PHP

2007-03-13 Thread Jim Hunter
I just wanted to let everyone know that the CodeGear virtual conference, CodeRage, is going on right now and the excitement over Delphi 4 PHP is mounting. The presentations so far on it have gone well with everyone asking lots of questions and all singing the same song... "When can I buy it?". Fo

Re: [qooxdoo-devel] Autosizing HtmlEmbed?

2007-03-13 Thread Manuel Bender
Hi Hubert, im not sure if it works, but it works for me For autosizing issues i set the Widgets with Widgetname.set({top: 0, left: 0, right:0, bottom:0}) relative to its main Pane that is being resized. (you can also use other relatives as top: 20 or so) If then the main pane where the widg

[qooxdoo-devel] English short date format wrong

2007-03-13 Thread Hugh Gibson
I'm not really up on the localisation stuff. However, I'm putting some date stuff into our application, and the default format for the date using a date-picker is coming up as M/d/YY. This is not how we do things here (UK) - it is d/M/YY (and Australia and probably other places as well). I've

[qooxdoo-devel] Autosizing HtmlEmbed?

2007-03-13 Thread Hubert Denkmair
Hi there, I'm trying to align a bunch of HtmlEmbeds of variable height in a VerticalBoxLayout, but they just don't care about their content and prefer to overlap each other. setHeight("auto") won't work and I can't find another way to resize them correctly. Am I missing something, is there an

Re: [qooxdoo-devel] Problem with Tomcat

2007-03-13 Thread Andreas Junghans
Hi Alexander, Am 13.03.2007 um 16:07 schrieb Alexander Weisser: > Hi, thanks. I think it works, but now i have another problem. [snip] > Here is my initial method: > qx.Proto.initialize = function(e) > { > // Define alias for custom resource path > qx.manager.object.AliasManager.getInstance(

Re: [qooxdoo-devel] combobox getValue

2007-03-13 Thread Tobias Koller (GERMO GmbH)
Dont worry! I'm using 6.6 and it works fine :) -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Matthias Reuter Gesendet: Dienstag, 13. März 2007 16:16 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] combobox getValue And for those who suffere

Re: [qooxdoo-devel] combobox getValue

2007-03-13 Thread Matthias Reuter
And for those who suffered from my grammar: automatically generated :-) > And again, my last mail may be ignored. I forgot about the > automatic generated getSelected method. - Take Surveys. Earn Cash. Influence the Future

Re: [qooxdoo-devel] combobox getValue

2007-03-13 Thread Matthias Reuter
And again, my last mail may be ignored. I forgot about the automatic generated getSelected method. So getSelected().getValue() should indeed work. Matthias > My last post might be out-of-date. We're still using 0.6.2, > where getSelected.getValue worked. I do not find getSelected > in the API

Re: [qooxdoo-devel] combobox getValue

2007-03-13 Thread Matthias Reuter
My last post might be out-of-date. We're still using 0.6.2, where getSelected.getValue worked. I do not find getSelected in the API of 0.6.6, though. Maybe getManager().getSelected().getValue() ? Matthias > comboObj.getSelected().getValue(); > > > how can i get the value (not the label-text)

Re: [qooxdoo-devel] combobox getValue

2007-03-13 Thread Tobias Koller (GERMO GmbH)
Thank you! -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Matthias Reuter Gesendet: Dienstag, 13. März 2007 16:05 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] combobox getValue comboObj.getSelected().getValue(); > how can i get the valu

Re: [qooxdoo-devel] Problem with Tomcat

2007-03-13 Thread Alexander Weisser
Hi, thanks. I think it works, but now i have another problem. Here is my initial method: qx.Proto.initialize = function(e) { // Define alias for custom resource path qx.manager.object.AliasManager.getInstance().add("custom", qx.Settings.getValueOfClass("custom.Application", "resourceUri"));

Re: [qooxdoo-devel] combobox getValue

2007-03-13 Thread Matthias Reuter
comboObj.getSelected().getValue(); > how can i get the value (not the label-text) of the selected item in a Combobox? > I tried this: > comboObj.getList().getValue(); - Take Surveys. Earn Cash. Influence the Future of IT Jo

[qooxdoo-devel] combobox getValue

2007-03-13 Thread Tobias Koller (GERMO GmbH)
Hello, how can i get the value (not the label-text) of the selected item in a Combobox? I tried this: comboObj.getList().getValue(); thanks Tobias - Take Surveys. Earn Cash. Influence the Future of IT Join So

Re: [qooxdoo-devel] tree, treefullcontrol or treevirtual?

2007-03-13 Thread westor
Yes, what I meant: I also would like to drang and drop a subtree up or down so another subtree (also in the same widget...) Imagine, you move a directory or a single file to another directory and want to do this with D&D :-) Derrell.Lipman wrote: > > westor <[EMAIL PROTECTED]> writes: > >> th

[qooxdoo-devel] Problems with Events

2007-03-13 Thread Daniel Haferkorn
Hi there, I am currently creating a login screen with Qooxdoo, and now I want to add a little usability to it. I have a TextField userField, a PasswordField passwordField (yes, very creative, I know) and a form.Button okButton. The okButton is initially disabled. The okButton has an execute event

Re: [qooxdoo-devel] tree, treefullcontrol or treevirtual?

2007-03-13 Thread Derrell . Lipman
"Charles SALMON" <[EMAIL PROTECTED]> writes: > I'd like to use the new treevirtual class but I really need the D&D support. > In my application, a tree is used to build an application project (called > 'project source'), ie some folders and file that are imported from a file > system > > I need D&

Re: [qooxdoo-devel] tree, treefullcontrol or treevirtual?

2007-03-13 Thread Derrell . Lipman
westor <[EMAIL PROTECTED]> writes: > thank you for you good and quick answer, now I have a little bit more glue > of these implementations and how they compare each other. > I use the tree with a CMS, the structure is loaded from a database. I can > detect if there are childen below a folder with

Re: [qooxdoo-devel] Pretty printing - is it just once during migration to 0.7?

2007-03-13 Thread Hugh Gibson
> we might consider to use tree based migration in the future if there > are things which cannot be solved using regular expressions. We know > however that a forced pretty print is a problem for many users, so we > will use it with caution. That's just what I wanted to hear :-) Hugh

Re: [qooxdoo-devel] *.js source file formatter?

2007-03-13 Thread Hugh Gibson
> before adding the new formatting option. Now added. See http://bugzilla.qooxdoo.org/show_bug.cgi?id=336 for description of options and patch. Thomas, are you going to work on http://bugzilla.qooxdoo.org/show_bug.cgi?id=333 ? I've dug into the tokeniser now and have a bit of a handle on how t

[qooxdoo-devel] table inside an Atom and event "appear"

2007-03-13 Thread Tobias Koller (GERMO GmbH)
Hello, I try to update data (different content: atoms, layouts, labels,etc) inside an Atom each time I click on a node in a Tree-Obj. That works fine if there is no table-Obj to be displayed in the atom. Here an example: qx.Proto.test = function(){ var widget = new qx

Re: [qooxdoo-devel] Pretty printing - is it just once during migration to 0.7?

2007-03-13 Thread Fabian Jakobs
Hugh Gibson schrieb: > Hi, > > I'm working on the pretty printing which kicks in with migration to 0.7. > > Is this only going to run once, during migration to 0.7, or will it be > invoked for every migration after 0.7 as well? In other words, will future > upgrades revert to using regular expres

Re: [qooxdoo-devel] some general questions

2007-03-13 Thread Chris Banford
Hi Andreas, Working on a certified qooxdoo editor is something that I would be interested in being involved in. Such an editor would be a central part of the new project that (looks like) is coming together shortly for me. Ideally, it would be nice to have several of the top qooxdoo devs put t

Re: [qooxdoo-devel] some general questions

2007-03-13 Thread Andreas Ecker
Hi Carsten, welcome to qooxdoo! ;-) > I'll try some answers for you, as a user. > > > We just started evaluating Qooxdoo and a few question came up > > immediatly: > > > > a) Stability and release cycle > > We saw that the framework is still under heavly changes. So does it > > make sense t

Re: [qooxdoo-devel] tree, treefullcontrol or treevirtual?

2007-03-13 Thread westor
Hi Derell, thank you for you good and quick answer, now I have a little bit more glue of these implementations and how they compare each other. I use the tree with a CMS, the structure is loaded from a database. I can detect if there are childen below a folder with an implemntation of nested sets

Re: [qooxdoo-devel] tree, treefullcontrol or treevirtual?

2007-03-13 Thread Charles SALMON
Hi, I'd like to use the new treevirtual class but I really need the D&D support. In my application, a tree is used to build an application project (called 'project source'), ie some folders and file that are imported from a file system I need D&D to: - Easily import a file (folder) from my s

Re: [qooxdoo-devel] some general questions

2007-03-13 Thread Sebastian Werner
Hugh Gibson schrieb: > I'll try some answers for you, as a user. > >> We just started evaluating Qooxdoo and a few question came up >> immediatly: >> >> a) Stability and release cycle >> We saw that the framework is still under heavly changes. So does it >> make sense to go to production in th

Re: [qooxdoo-devel] problem with qx.ui.table

2007-03-13 Thread Hugh Gibson
> Is there a way to have a persistant id in the > table not shown to the user? See my other email this morning. Hugh - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get