Re: [qooxdoo-devel] qooxdoo + Borland (CodeGear)

2007-02-21 Thread Sebastian Werner
The Wow wow wow starts now :) "VCL for PHP are the open source PHP scripts and libraries, including Qooxdoo, Adodb, DynAPI, Smarty, XAjax and JSCalendar. Inspired by VCL for Delphi, the component architecture is 100 percent written in PHP. Developers can create and integrate components

Re: [qooxdoo-devel] qooxdoo + Borland (CodeGear)

2007-02-21 Thread Fabian Jakobs
Chris Banford schrieb: > Hi list, > > Hope I've finally managed to sort out my email accounts mess, so the > mails that I send to this list don't always bounce (Sorry Andreas!). > > As I do a lot of work with PHP, I was interested in the story on > Slashdot about Borland doing a Visual PHP versio

[qooxdoo-devel] qooxdoo + Borland (CodeGear)

2007-02-21 Thread Chris Banford
Hi list, Hope I've finally managed to sort out my email accounts mess, so the mails that I send to this list don't always bounce (Sorry Andreas!). As I do a lot of work with PHP, I was interested in the story on Slashdot about Borland doing a Visual PHP version of Delphi. Reading through the (

[qooxdoo-devel] Problem with keyup event on TextField

2007-02-21 Thread zindel
Hello, I noticed a weird problem inside the "keyup" event handler. Generally it works OK, but only for alpha-numeric symbols. I.e. if I press something of: "';:<> etc., the getComputedValue() method returns the same value as before... I'm using qooxdoo 0.6.4 (r5282) Here is the code: function

Re: [qooxdoo-devel] qx.NET framework (much like eclipse rap)

2007-02-21 Thread Jerónimo Milea
Fabian Jakobs wrote: > Jerónimo Milea schrieb: >> This is a very early version of the framework, its only intended to test >> basic functionallity. >> >> You can get a brief description here: http://aspnetriaen.blogspot.com >> >> It can be downloaded from here: >> http://200.58.116.15/aspnetria_we

Re: [qooxdoo-devel] qx.NET framework (much like eclipse rap)

2007-02-21 Thread Jerónimo Milea
Hi Fabian, sory for the delay. There is no live demo yet, but u can get the code from SVN and compile it with mono, so u can test it in mac, lemme know if u need help to do this, there is no documentation yet. -- Best Regards VoidMain --

[qooxdoo-devel] tip: sorting a listview column by a property other than "text"

2007-02-21 Thread Priebe, Jason
We wanted to display dates in a listview using a MM/dd/ format. Unfortunately, this does not lead to good sorting if you click the column header. You *could* write a sort function that would parse the date strings and get a Javascript Date object and perform your comparisons on that, but that

Re: [qooxdoo-devel] Column width in treefullcontrol

2007-02-21 Thread Derrell . Lipman
dperez <[EMAIL PROTECTED]> writes: > Here is how I create a row in the tree: > > var row = qx.ui.treefullcontrol.TreeRowStructure.getInstance().newRow(); > row.addIcon(); > row.addLabel(' '+myUri+' '+myCaption+' '); > var comp = new qx.ui.basic.HorizontalSpacer; > com

Re: [qooxdoo-devel] How could I upload a file in the qooxdoo app?

2007-02-21 Thread ericson
Well I had to deal with this, there is no widget for this, anyway, you can use qx.ui.embed.Iframe and manage exchange with a PHP program on the server side (using the classical form as below) Cheers Eric zindel wrote: > > Hello, > > Actually, I'd like to know the "AJAX-way" of uploading the

[qooxdoo-devel] Column width in treefullcontrol

2007-02-21 Thread dperez
Hi, I would like to create an additional column in a treefullcontrol, that occupies remaining space. The tree width is set to auto. Here is how I create a row in the tree: var row = qx.ui.treefullcontrol.TreeRowStructure.getInstance().newRow(); row.addIcon(); row.addLab

Re: [qooxdoo-devel] How could I upload a file in the qooxdoo app?

2007-02-21 Thread frederic
Hi Alexei, A experimental implementation can be found here : http://www.nabble.com/Experimental-file-upload-implementation-tf2630085.html#a7339666 frederic zindel wrote: > > Hello, > > Actually, I'd like to know the "AJAX-way" of uploading the file. I.e.: > > > > > > > How c

Re: [qooxdoo-devel] event not supported in subclass, with 0.7 Clazz organization

2007-02-21 Thread Derrell . Lipman
Fabian Jakobs <[EMAIL PROTECTED]> writes: > You only have to list every event of the super class in a mixed qooxdoo > 0.6/0.7 environment. If addEventListener is called on a new style class if > will search the inheritence hirarchy for a definition a an event using the > "events" key. The benefits

Re: [qooxdoo-devel] this.testFunction is no function

2007-02-21 Thread Tobias Koller (GERMO GmbH)
Thanks!!! -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Hugh Gibson Gesendet: Mittwoch, 21. Februar 2007 14:17 An: qooxdoo-devel@lists.sourceforge.net Betreff: Re: [qooxdoo-devel] this.testFunction is no function > atom.addEventL

Re: [qooxdoo-devel] this.testFunction is no function

2007-02-21 Thread Hugh Gibson
> atom.addEventListener("click", function(){ > this.saveData();}, this); This is your problem. In the function that you supply, "this" refers to the function itself and not to the class, even though you supplied "this" (the class) as the third parameter to addEventListener. You

[qooxdoo-devel] How could I upload a file in the qooxdoo app?

2007-02-21 Thread zindel
Hello, Actually, I'd like to know the "AJAX-way" of uploading the file. I.e.: How can I get the same functionality in the qooxdoo app? Thanks, Alexei Golovko - Take Surveys. Earn Cash. Influence

[qooxdoo-devel] this.testFunction is no function

2007-02-21 Thread Tobias Koller (GERMO GmbH)
Hello, can anyone tell me something about this errorMessage? qx.ui.basic.Atom[307]: Could not dispatch event of type "click": TypeError - this.saveData is not a function I got this Method: qx.Proto.saveData = function(test){ }; And another method which calls the "this.saveDa

Re: [qooxdoo-devel] default-Font?

2007-02-21 Thread Hugh Gibson
> is there a way to set a default-Font for all widgets in my > Application.js? Unfortunately this is difficult. Font is controlled via Appearance, but the default theme (qx.theme.appearance.Classic.js) is broken in that there are 9 definitions for the font to use, so it's not easy to change in j

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-21 Thread Dietrich Streifert
This is a long standing bug in FireFox which will be fixed in FireFox 3: https://bugzilla.mozilla.org/show_bug.cgi?id=167801#c76 It's incredible but the bug was reported more then four years ago. Hugh Gibson schrieb: > Is it just me, or is the input caret missing in text fields in Firefox 2 when

[qooxdoo-devel] Input caret missing in Firefox 2

2007-02-21 Thread Hugh Gibson
Is it just me, or is the input caret missing in text fields in Firefox 2 when they are in dialogs based on qx.ui.window.Window? These work fine on IE7. The text fields are in a grid layout, in a group, in a vertical sizer which is in the Window. But removing all the overhead still gives proble

[qooxdoo-devel] default-Font?

2007-02-21 Thread Tobias Koller (GERMO GmbH)
Hello, is there a way to set a default-Font for all widgets in my Application.js? - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions