[qooxdoo-devel] Generic data interface Was: Re moteTable fires _loadRowCount() multiple times for very

2008-04-15 Thread cboulanger
Ralf Nieuwenhuijsen schrieb: > - Unify lists, tables, trees, dropdowns, menu's as far as possible. > At least on an interface level. > Yes, yes, yes! I like the direction this discussion is going. That is what we are doing in qcl.databinding (or qcl.databinding.simple, at the moment, the mai

Re: [qooxdoo-devel] RemoteRequest with REST

2008-04-15 Thread cboulanger
Ralf Nieuwenhuijsen schrieb: > > 2008/4/15, cboulanger <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>>: > > In a future release, some thought should be put into creating a > datasource abstraction API into which all kinds of datasources > (such as >

Re: [qooxdoo-devel] RemoteRequest with REST

2008-04-15 Thread cboulanger
In a future release, some thought should be put into creating a datasource abstraction API into which all kinds of datasources (such as a directly connected SQL database, a couchDB, an XML database such as eXist or Xindice, etc... ) can be plugged into. Together with a decent cryptographic libr

Re: [qooxdoo-devel] RemoteRequest with REST

2008-04-14 Thread cboulanger
CouchDB looks quite interesting. I hate Schemas that have to be upgraded and synchronized in different databse instances. It would be great to have a qooxdoo API to access this kind of database. JSON as a native database format would fit perfectly to a qooxdoo client... Ralf Nieuwenhuijsen schr

Re: [qooxdoo-devel] qx.client.History

2008-04-09 Thread cboulanger
... Christian cboulanger schrieb: > Hello, > > I am currently experimenting with the concept of application state and > the browser back/forward button support by qooxdoo (qx.client.History). > It works quite well - I never thought that it was possible to use the > back/forward

Re: [qooxdoo-devel] this.log/warn/error in event handlers

2008-04-08 Thread cboulanger
Jim Hunter schrieb: > It does matter, I think in the context you are calling, 'this' has no > context. If you change those lines to : > > _this.info(...) etc. it might work as long as _this is a global var, > and the way you initialized it, it's a local var. When you make a call > to a functio

Re: [qooxdoo-devel] this.log/warn/error in event handlers

2008-04-08 Thread cboulanger
Jim Hunter schrieb: > I use this.info inside event handlers, at least > with the handling of 'completed' event of a Request, all the time. The > one thing to remember is that the 'this' does not refer to the object > that fired the event, it refers to the event object (unless

[qooxdoo-devel] this.log/warn/error in event handlers

2008-04-08 Thread cboulanger
Hi, I remember faintly that this has been discussed before, but couldn't find it in the nabble list archive or bugzilla. When I am in an event handler, this.info()/this.warn()/this.error() seem to be ignored. They work fine outside the event handling code. I keep having to use my Firebug conso

[qooxdoo-devel] this.log/warn/error in event handlers

2008-04-08 Thread cboulanger
Hi, I remember faintly that this has been discussed before, but couldn't find it in the nabble list archive or bugzilla. When I am in an event handler, this.info()/this.warn()/this.error() seem to be ignored. They work fine outside the event handling code. I keep having to use my Firebug conso

[qooxdoo-devel] qx.client.History

2008-04-08 Thread cboulanger
Hello, I am currently experimenting with the concept of application state and the browser back/forward button support by qooxdoo (qx.client.History). It works quite well - I never thought that it was possible to use the back/forward button in an AJAX application! Now I want to make my own cust

Re: [qooxdoo-devel] UploadWidget problem

2008-04-03 Thread cboulanger
gt; right : 4, > width : null > }); > > var file = new uploadwidget.UploadField('uploadfile', 'Upload > File', 'icon/16/actions/filesave.png'); > > file.set( > { > left : 0, > right : 0 >

Re: [qooxdoo-devel] UploadWidget problem

2008-04-03 Thread cboulanger
uot;,left:"0",right:"0",bottom:"0", width:null}); > > Hope this helps. > > > cboulanger schrieb: > >> Hello, >> >> I have a problem with the upload Widget from qooxdoo-contrib. I am >> trying to build it into a Mixin with

[qooxdoo-devel] UploadWidget problem

2008-04-03 Thread cboulanger
Hello, I have a problem with the upload Widget from qooxdoo-contrib. I am trying to build it into a Mixin with various user interaction widgets. Here is my code: /** * not functional yet * @param {Object} msg * @param {Object} callback * @param {Objec

Re: [qooxdoo-devel] New Snippet: Asynchronous (Non-Blocking) User Interaction

2008-03-27 Thread cboulanger
I added another convenience method to the snipped which constructs a form for quick data input. http://qooxdoo.org/documentation/0.7/snippets/asynchronous_user_interaction But Sebastian is right, a class like this is hard to maintain, this should be split in separate classes. A mixin could pro

[qooxdoo-devel] Unwanted DEBUG message: qx.ui.table.cellrenderer.Default:

2008-03-25 Thread cboulanger
Hello, even though I have turned off debugging for build mode, I am getting this message after upgrading to the current trunk: 000916 DEBUG: qx.ui.table.cellrenderer.Default: .qooxdoo-table-cell { position: absolute; top: 0px; height: 100%; overflow:hidden; text-overflow:ellipsis; -o-tex

Re: [qooxdoo-devel] Firefox 3 (Gecko 1.9) compatibility / Mozilla Prism / Fluid / Mac OS 10.5

2008-03-25 Thread cboulanger
Sure: http://www.bibliograph.org/Screen-Shots , bottom of page. However, it doesn't look very interesting - just like a browser window opened with window.open(). The interesting thing is that it has its own process and profile data. Cheers, Christian Fabian Jakobs schrieb: > bibliograph sch

Re: [qooxdoo-devel] MD5 / Base64 - License questions (BSD)

2008-03-22 Thread cboulanger
Ok, created bug 808 and attached class for addition into qooxdoo: http://bugzilla.qooxdoo.org/show_bug.cgi?id=808 Thanks. Hugh Gibson schrieb: >>> Seems pretty clear to me, from another MD5 package that we use: >>> >>> >> So if its pretty clear to you, is that a "Yes" or "No" ? >>

[qooxdoo-devel] MD5 / Base64 - License questions (BSD)

2008-03-21 Thread cboulanger
Hello list, I am (probably like many) in need of a javascript MD5 encryption function. The OAT toolkit (http://oat.openlinksw.com/) has a fine one, that they didn't write themselves: /* MD5 and SHA routines, along with their supplemental sub-routines are Copyright (C) Paul Johnston 1999

Re: [qooxdoo-devel] New snippet: How to Implement a Multi-Window Qooxdoo Application

2008-03-10 Thread cboulanger
Fabian Jakobs schrieb: > Leander Hanwald schrieb: > >> Hi all, >> >> only in theory (didn't tested it): >> >> Shouldn't it be possible to add and remove qooxdoo widgets inside of a >> native window and control them from inside of the main window? >> >> Like: >> >> 1. Create native window >> 2.

[qooxdoo-devel] New snippet: How to Implement a Multi-Window Qooxdoo Application

2008-03-09 Thread cboulanger
Normally, qooxdoo application will follow the One-Page-One-Application model. But there will be cases where it becomes necessary to use native popup windows which also contain qooxdoo widgets. Qooxdoo windows cannot be moved out of the way since they are limited to the browser viewport. Here

[qooxdoo-devel] Editable Tables with setShowCellFocusIndicator(false) not working (0.7.2)

2008-02-26 Thread cboulanger
Hi, Table gurus, I am using a Table as a property editor (qooxdoo 0.7.2). Column 1 holds the property names, column 2 the editable property data. When the user double clicks on a cell in column 2, it becomes editable - that is standard behaviour. I do not need a cell focus editor, in fact, the

Re: [qooxdoo-devel] Layout in qooxdoo 0.8

2008-02-03 Thread cboulanger
Fabian Jakobs schrieb: > > On the other > hand we consider to create widgets with reconfigured layouts, which > behave like the old qooxdoo 0.7 layout widget. For example a > HorizontalBoxLayout widget, which has a static HBox layout and some of > the HBox interface forwarded. > > Yes please

[qooxdoo-devel] Aptana IDE / Jaxer

2008-01-23 Thread cboulanger
Hi, did you see http://www.aptana.com/jaxer ? I think Aptana could be THE IDE for qooxdoo development if full qooxdoo code assist and a qooxdoo extension for the Jaxer backend could be developed. This would be so cool - a ready-to-go client-server architecture for qooxdoo apps. I would guess t

[qooxdoo-devel] Link Cell Renderer

2008-01-11 Thread cboulanger
Hi, here is a very simple link cell renderer for 0.7.3. However, I can't get it to do what it should. 1) I tried to use the clazz.stylesheet / _getCellClass way of styling the link, however, it didn't render as I could see with a dom inspector. I ended up including the style information manu

Re: [qooxdoo-devel] remote table model

2008-01-11 Thread cboulanger
Hi Jim, have a look at contrib://qcl/trunk/source/class/qcl/databinding/simple/RemoteTableModel.js - maybe it can help you - I also had to do some experimenting to find out how the remote table works... Christian Jim Hunter schrieb: > I found some emails where people are using the Remote Ta

Re: [qooxdoo-devel] qooxdoo 0.7 legacy branch stability

2008-01-11 Thread cboulanger
eek. I > think that legacy should be quite stable and gets stabler with every bug > we fix :) > > Sebastian > > > cboulanger schrieb: > >> Hi, >> >> In the last couple of weeks, I have worked with an older revision of >> the 0.7 legacy sv

[qooxdoo-devel] qooxdoo 0.7 legacy branch stability

2008-01-09 Thread cboulanger
Hi, In the last couple of weeks, I have worked with an older revision of the 0.7 legacy svn branch to avoid instability problems. What is the current status of the branch? Is it stable to be used or should I wait until 0.7.3 is out? Thanks, Christian ---

Re: [qooxdoo-devel] Widget inheritance in QxTransoformer

2007-12-14 Thread cboulanger
Siarhei Barysiuk schrieb: > Hello, > > Done in rev.222. > If attribute "inherit" is defined will be used value of this > attribute, in other cases will be used qx.core.Object. > Thanks Siarhei! However, I just tried the solution - it works, but no properties are set on the node - and without

Re: [qooxdoo-devel] TreeVirtual drag and drop from a ListView

2007-12-14 Thread cboulanger
Ivan Garcia schrieb: I've tried many things but the mouse when dropping appears all the time as FORBIDDEN icon. The tutorial and demos only show how to drag from and to a TreeVirtual but not from a ListView to a TreeVirtual, is this possible ? Hello, there is no DragAndDropSuppor

Re: [qooxdoo-devel] Widget inheritance in QxTransoformer

2007-12-11 Thread cboulanger
Michail Zabolotko schrieb: > Hi. > I have a question to QxTransformer developers: > Are you going to add means to specify inheritance of a widget from another? > > For example: > namespace="showcase" className="LoginWindow" > title="Login" authors="Nobody" >

[qooxdoo-devel] Resize event

2007-11-27 Thread cboulanger
Hello, in my application, I use windows with an Iframe. When resizing the window (for example, maximizing and restoring), I need to resize elements in the Iframe. How can I catch the resize events from the container widgets? I have looked into the documentation and the API, but I couldn't find