Re: [qooxdoo-devel] Best way to filter a tree?

2009-05-12 Thread Andrew Smith
> Hello Andrew, Hi Martin > > as you have seen right, this features is still missing in the tree > controller. We had no time left in my master thesis to get that done. No problem, I'm amazed at how much you've actually achieved in qooxdoo. I'm just getting my feet wet with it, but so

Re: [qooxdoo-devel] remote tables and mysql queries

2009-05-12 Thread Fritz Zaucker
On Tue, 12 May 2009, Derrell Lipman wrote: > On Tue, May 12, 2009 at 4:59 PM, Michael Helwig wrote: > >> Hi, >> I'm still working with qooxdoo's remote tables and I'm having problems >> with getting the right data from mysql. The trouble is that qooxdoo at >> the beginning wants to have rows 0 to

Re: [qooxdoo-devel] remote tables and mysql queries

2009-05-12 Thread Derrell Lipman
On Tue, May 12, 2009 at 4:59 PM, Michael Helwig wrote: > Hi, > I'm still working with qooxdoo's remote tables and I'm having problems > with getting the right data from mysql. The trouble is that qooxdoo at > the beginning wants to have rows 0 to 100 and, if the table is > scrolled to the appropri

[qooxdoo-devel] remote tables and mysql queries

2009-05-12 Thread Michael Helwig
Hi, I'm still working with qooxdoo's remote tables and I'm having problems with getting the right data from mysql. The trouble is that qooxdoo at the beginning wants to have rows 0 to 100 and, if the table is scrolled to the appropriate position, qooxdoo requests the next 50 rows, etc. It is ra

Re: [qooxdoo-devel] Getting started ... 2 questions

2009-05-12 Thread Ingrid Lohmann
thanks Thomas and Fritz for your immediate hints ! That was quite helpful... Original-Nachricht > Datum: Mon, 11 May 2009 22:03:36 +0200 (CEST) > Von: "thron7" > An: "qooxdoo Development" > Betreff: Re: [qooxdoo-devel] Getting started ... 2 questions > > hi all, > > > > I'm

Re: [qooxdoo-devel] Single images in build version

2009-05-12 Thread Martin Wittemann
Hello, there is no "official" way to turn that feature off, at least no way i know. The only thing you can do is to patch the ResourceManager in the framework manually for the time you need the desired behavior. Just open the qx.util.ResourceManager class and add return false; in the first l

[qooxdoo-devel] Single images in build version

2009-05-12 Thread Jenec
Hi, is there any way to configure my build version to use only single images, instead of combined? Our graphic designer needs to be able preview his new graphics and combining images woul be too complicated for him.. -- View this message in context: http://www.nabble.com/Single-images-in-build-v

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread panyasan
Gene Amtower wrote: > > Aha, I thought I had seen that somewhere, and from your link I see why. > I think I need to take a look at that for my own use - it may indeed be > useful to others like myself, and maybe you can get some help from the > rest of us in bringing it up to speed with current

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread panyasan
Martin Wittemann wrote: > > If you bind the two model properties as you did in that code sample. > You dont have two models. You only have one model and both, the store > and the controller does have a reference to the same model all the time. > OK, I see. Martin Wittemann wrote: > > T

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread Gene Amtower
Aha, I thought I had seen that somewhere, and from your link I see why. I think I need to take a look at that for my own use - it may indeed be useful to others like myself, and maybe you can get some help from the rest of us in bringing it up to speed with current versions of PHP and Qooxdoo. Tha

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread Martin Wittemann
Am 12.05.2009 um 14:19 schrieb panyasan: > > Hm... I am struggling a bit with the widget - model - controller - > model > -marshal - store chain. > > So, if you say that one can bind a controller with a store through > > store.bind("model", controller, "model"); > > and both the store and the c

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread panyasan
Extending on this question: I created a model extensing qx.ui.treevirtual.SimpleTreeDataModel which fires "change" and "changeLength" events similarly to qx.data.Array. If my store uses a qx.data.Array object as model and binds it to the controller's model (which is the TreeVirtual's model actua

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread Siarhei Barysiuk
I like this name - Christian's Quantum Computer Language :) Serge On May 12, 2009, at 3:32 PM, panyasan wrote: > > Sorry to be cryptic. qcl is a project in qooxdoo contrib containing a > "qooxdoo component library" (qcl) - the name is pretty meaningless, > I just > needed a namespace that can

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread panyasan
Sorry to be cryptic. qcl is a project in qooxdoo contrib containing a "qooxdoo component library" (qcl) - the name is pretty meaningless, I just needed a namespace that can be used in an xml tag (for our qxtransfomer project). A description is here: http://qooxdoo.org/contrib/project?s=qcl#qcl Bas

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread panyasan
Hm... I am struggling a bit with the widget - model - controller - model -marshal - store chain. So, if you say that one can bind a controller with a store through store.bind("model", controller, "model"); and both the store and the controller have a model that has properties, what exactly does

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread Gene Amtower
On Tue, 2009-05-12 at 02:04 -0700, panyasan wrote: > Hi Martin, > > thanks for your offer of help. It is funny how subjective priorities differ > from business considerations ... I have always thought that the whole > databinding stuff, for different backends, and for the virtual widgets would >

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread panyasan
Hi Martin, thanks for your offer of help. It is funny how subjective priorities differ from business considerations ... I have always thought that the whole databinding stuff, for different backends, and for the virtual widgets would be of crucial importance for attracting a wide range of develop

Re: [qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread Martin Wittemann
Hello Christian, we are currently not working on a jsonrpc data store. But im happy to hear that you are on it. Do you plan to share your work with the framework? Do you need any additional information about the current implementation of the json store or any other data binding class? Best,

[qooxdoo-devel] JsonRpc data stor

2009-05-12 Thread panyasan
Hello, I am working on a jsonrpc data store for the databinding component of qooxdoo. Just want to make sure nobody is working on that already. It would be a waste of time to invent the wheel a second time... Let me know! Christian -- View this message in context: http://www.nabble.com/JsonRpc