Re: [qooxdoo-devel] changeSelection bound property getting empty data when form disabled

2010-05-10 Thread MartinWittemann
Hey Andy, the RadioGroup also supports the modelSelection property which is exactly what you need. That saves you the whole converter. ;) Regards, Martin -- View this message in context:

Re: [qooxdoo-devel] qx.io.remote.Response object not working

2010-05-10 Thread uglyhunK
When debugged with the following code, it displays the actual json content. But when I alert with e.getConent() it shows [object Object]. alert(qx.dev.Debug.debugObjectToString(e.getContent())); -- View this message in context:

Re: [qooxdoo-devel] Getting browser to save user name and password

2010-05-10 Thread marius123
Hi Andreas, Hi flj, Thanks to you. I also tried to set the name and id attributes but unfortunately that didnt have an effect. As you said, Andreas, placing a static HTML-page in an IFrame within a Qooxdoo app would not really solve the problem. We'd like to use qooxdoo's look and feel,

Re: [qooxdoo-devel] It is wrong to use window.location.href ?

2010-05-10 Thread Christian Hagendorn
Hi Jean-Baptiste, so far as I know is there no problem to use window.location.href. Maybe only when a Iframe tries to access the window from his parent. Do you have problems with it? Cheers, Chris Am 07.05.2010 18:18, schrieb Jean-Baptiste BRIAUD -- Novlog: Hi, It is wrong to use

Re: [qooxdoo-devel] Problem with refreshing remote table.

2010-05-10 Thread Christian Hagendorn
Hi Nick, While I did duplicate the circumstances of my error, I'm not getting the same error message in the playground. http://tinyurl.com/2w2ealv http://tinyurl.com/2w2ealv I'm not sure if this is a result of my snippet being inadequate or what. Thank you for trying it. Regardless, the

[qooxdoo-devel] How to select an item in selectbox?

2010-05-10 Thread alexander.volik
I have one selectbox, described as: var list = [{name: Kansas, id: 1},{name: Arizona, id: 2}]; var selectBox = new qx.ui.form.SelectBox(); var model = qx.data.marshal.Json.createModel(list); var controller = new qx.data.controller.List(model, selectBox, name); I want to select an item in

[qooxdoo-devel] Set open property of tree item.

2010-05-10 Thread alexander.volik
I have a tree with tree items described as qx.Class.define(geoeat.customTreeNode, { extend : qx.ui.tree.TreeFolder, construct : function () { this.base(arguments); this.setChildren(new qx.data.Array()); }, properties : { name : { check: String, init : ,

Re: [qooxdoo-devel] getData error (blind newb question)

2010-05-10 Thread Christian Hagendorn
Hi wgw, that's crazy, the problem is the alert message box, remove it and you will see that the error is gone. It seems to me that the alert execution change something so that the getData call think he is not in a drop event. Cheers, Chris Am 07.05.2010 18:35, schrieb wgw: I'm learning qx

Re: [qooxdoo-devel] MResizable onresize event?

2010-05-10 Thread Christian Hagendorn
Hi Greg, if I understood you correct, then the resize event could the right choice. The event is fired when the size from a widget is changed and it contains the new top, left, width and height. Have a look at the Demo Browser [1], the first window has a listener to the resize event. Cheers,

[qooxdoo-devel] Mac OS-like search box

2010-05-10 Thread panyasan
Hi, has anyone already implemented a Mac-OS-X-like search box, such like http://n2.nabble.com/file/n5029869/Searchbox.png Looks nicer than a plain old TextField and should not be too hard to do with qooxdoo's themeing features. Unfortunately, I am an absolute zero when it comes to design and

Re: [qooxdoo-devel] qx.io.remote.Response object not working

2010-05-10 Thread Derrell Lipman
On Mon, May 10, 2010 at 02:36, uglyhunK m...@uglyhunk.in wrote: When debugged with the following code, it displays the actual json content. But when I alert with e.getConent() it shows [object Object]. alert(qx.dev.Debug.debugObjectToString(e.getContent())); Perfect. That's exactly as it

[qooxdoo-devel] Qooxdoo selectiong few cells in table by click and drag

2010-05-10 Thread monika.falk
Hi Everyone I have an html table build in qooxdoo. I want to implement something which allow users to select multiple cells in one row by dragging mouse. It should be similar like in here: http://jqueryui.com/demos/selectable/#display-grid But the selection can be only made in one row. Can it

[qooxdoo-devel] Building plugins

2010-05-10 Thread Qoo Goo
Hello, After a migration from a complex application based on Qooxdoo 0.7 to 1.x, we are now trying to figure out how to reimplement our plug-ins mechanism. We were using our own mechanism server-side and in client-side we based our plugins architecture in the contents of the article in

[qooxdoo-devel] Subclassing Scroller.js

2010-05-10 Thread Michael Saladin
Hi all, I'm quite new to qooxdoo and I'd like to create a table that contains filters in the header cells (where you can narrow the results, something very similar to qx.ui.table.model.Filtered, for each column. E.g. when you have a column with dates, you have a filter in the header column

Re: [qooxdoo-devel] ajax request problem

2010-05-10 Thread Christian Hagendorn
Hi, here an example to use the JSON store: http://tinyurl.com/3y4pfn9 Cheers, Chris Am 08.05.2010 05:08, schrieb uglyhunK: Hi, This is what I was set out to do. But stuck in the first step itself. - send a HTTP GET request to yahoo search api request using qx.io.remote.Request - marshal

Re: [qooxdoo-devel] Subclassing Scroller.js

2010-05-10 Thread Derrell Lipman
On Mon, May 10, 2010 at 07:52, Michael Saladin msala...@gmx.net wrote: Hi all, I'm quite new to qooxdoo and I'd like to create a table that contains filters in the header cells (where you can narrow the results, something very similar to qx.ui.table.model.Filtered, for each column. E.g. when

Re: [qooxdoo-devel] Set open property of tree item.

2010-05-10 Thread Christian Hagendorn
Am 10.05.2010 10:04, schrieb alexander.volik: I have a tree with tree items described as qx.Class.define(geoeat.customTreeNode, { extend : qx.ui.tree.TreeFolder, construct : function () { this.base(arguments); this.setChildren(new qx.data.Array()); }, properties : {

Re: [qooxdoo-devel] Subclassing Scroller.js

2010-05-10 Thread Dave Baggett
Michael, Your widget sounds very cool. You may want to take a look at the Smart table model contrib as well; e.g., you might make the filtering mechanism compatible with the one I used in that contrib. You might also get some ideas from that contrib, as it provides some capabilities beyond what

Re: [qooxdoo-devel] Building plugins

2010-05-10 Thread thron7
Hi, as you might have gathered from the wiki page, the idea of packages has been carried further. The lingo has shifted a bit, the basic construct is now called a 'part', but the fundamental idea has been retained, as it is expressed on the 0.7 manual page: To split out parts of the application

[qooxdoo-devel] accordion-tree

2010-05-10 Thread Andreas G.
hello there, is there a fast way to implement such an accordion-tree? - http://demo.nextapp.com/echo3csjs/ animation is not that neccessary, only one tree-folder (on the top-most level) is allowed to be opened. cheers -- View this message in context:

Re: [qooxdoo-devel] Qooxdoo selectiong few cells in table by click and drag

2010-05-10 Thread Jonathan Weiß
Hello Monika, at the moment the Table widget supports multiple interval selection [1]. In this selection mode the user can select several rows by holding down shift or control and clicking on cells. A drag selection or multiple cell selection is currently not support. You can write a selection

Re: [qooxdoo-devel] Building plugins

2010-05-10 Thread Qoo Goo
Thanks Thomas, I already had visited those links, but none of them solve my problem (in fact I've been digging into the documentation for a while last days, but no clue...). We have already explored the possibility of using parts (and we use them), but not for plugins, but as a good

Re: [qooxdoo-devel] Subclassing Scroller.js

2010-05-10 Thread Derrell Lipman
On Mon, May 10, 2010 at 09:38, msaladin msala...@gmx.net wrote: Hi Derell, thanks a lot for your prompt answer. I tried it by using an own private instance variable in the subclass for __ignoreClick, and it works good (source is attached), but this solves the problem by invoking a new one:

Re: [qooxdoo-devel] qooxdoo-devel Digest, Vol 48, Issue 30

2010-05-10 Thread Andy Jarrell
Martin, Thanks for the feedback. RadioGroup also sends an array of the selected models where RadioButtonGroup sends an array of the selected RadioButtons? If my property is looking for a single, non-Array value I will have to do some conversion regardless. It would seem that the idea of

[qooxdoo-devel] vertical splitpane height

2010-05-10 Thread hkalyoncu
do i have to know initial height to give percentage heights to both parts of vertical splitpane? i want to divide the whole browser canvas area with a splitpane like this: -- 70% height verticalsplitter

Re: [qooxdoo-devel] Set open property of tree item.

2010-05-10 Thread alexander.volik
Christian Hagendorn wrote: setOpen is a method with a boolean parameter [1]. Please try: this.treeController.getSelection().getItem(0).setOpen(true) Of course, I use setOpen with boolean parameter, but there is no result of this -- View this message in context:

Re: [qooxdoo-devel] Set open property of tree item.

2010-05-10 Thread Christian Hagendorn
Am 10.05.2010 17:09, schrieb alexander.volik: Christian Hagendorn wrote: setOpen is a method with a boolean parameter [1]. Please try: this.treeController.getSelection().getItem(0).setOpen(true) Of course, I use setOpen with boolean parameter, but there is no result of this

Re: [qooxdoo-devel] Building plugins

2010-05-10 Thread Petr Kobalíček
Hi, I solved exactly this problem using QxBuild, building qooxdoo as one big file without the application. I think that it's tricky, but still possible (Note that I'm not using generator for our .js files) http://code.google.com/p/qxbuild/ QxBuild is only set of config files, I think that it

Re: [qooxdoo-devel] Set open property of tree item.

2010-05-10 Thread alexander.volik
Sample code http://tinyurl.com/353dj4y -- View this message in context: http://qooxdoo.678.n2.nabble.com/Set-open-property-of-tree-item-tp5029363p5031497.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Building plugins

2010-05-10 Thread thron7
On 05/10/2010 03:56 PM, Qoo Goo wrote: Thanks Thomas, I already had visited those links, but none of them solve my problem (in fact I've been digging into the documentation for a while last days, but no clue...). We have already explored the possibility of using parts (and we

Re: [qooxdoo-devel] Building plugins

2010-05-10 Thread thron7
On 05/10/2010 05:59 PM, Petr Kobalíček wrote: Hi, I solved exactly this problem using QxBuild, building qooxdoo as one big file without the application. I think that it's tricky, but still possible (Note that I'm not using generator for our .js files) http://code.google.com/p/qxbuild/

Re: [qooxdoo-devel] ajax request problem

2010-05-10 Thread Christian Hagendorn
Hi, okay, now I understood, why you don't want to use the JSON store. So now back to your example. Your problem with the second step was that your have overlook that the request is asynchronous. The marshal should be done in the complete event. Here your example, but the marshal is done in

Re: [qooxdoo-devel] getData error (blind newb question)

2010-05-10 Thread wgw
Thanks Chris! That is a quick fix! I know drag and drop is a little shaky, so I will keep an eye out for such quirks in the future. Thanks for taking the time to look into it -- I was baffled! Best, Bill -- View this message in context:

[qooxdoo-devel] New ServerObjects contrib (for a Java backend)

2010-05-10 Thread John Spackman
Hi all, I've just uploaded a new contrib. for integrating server-based Java objects with the Qooxdoo client apps; it adds support for properties and events at the server and keeps property values synchronised between each side. The proxies created on the client are standard Qooxdoo objects so

Re: [qooxdoo-devel] Set open property of tree item.

2010-05-10 Thread rsantiagopaz
works with tree.getRoot().getChildren()[0].setOpen(true); I think Item1 and tree.getRoot().getChildren()[0] are not reference to the same folder widget. I think the controller reinterpret treeData[0] like a model, and build other nodes. But I am not sure about this conclusion... (sorry the

[qooxdoo-devel] about Popup and ContextMenu

2010-05-10 Thread rsantiagopaz
Hi. I have this example. Try in the Playground. Click the button, then right click in the TextArea. The contextmenu appear behind the Popup. I need some tip or little help about how control the the overlapping between Popup and ContextMenu. I need ContextMenu appear upon Popup. var doc =

Re: [qooxdoo-devel] How to select an item in selectbox?

2010-05-10 Thread rsantiagopaz
yes, try var list = [{name: Kansas, id: 1},{name: Arizona, id: 2}]; var selectBox = new qx.ui.form.SelectBox(); var model = qx.data.marshal.Json.createModel(list); var controller = new qx.data.controller.List(model, selectBox, name); this.getRoot().add(selectBox);

Re: [qooxdoo-devel] How to select an item in selectbox?

2010-05-10 Thread alexander.volik
rsantiagopaz wrote: yes, try var list = [{name: Kansas, id: 1},{name: Arizona, id: 2}]; var selectBox = new qx.ui.form.SelectBox(); var model = qx.data.marshal.Json.createModel(list); var controller = new qx.data.controller.List(model, selectBox, name);

[qooxdoo-devel] Require a live form; what are my options?

2010-05-10 Thread Nick Watkins
I can't seem to find anything regarding the subject, or perhaps I'm not searching for the right thing. For an application I'm developing, I require a form whose elements are connected to data in a database. Changes on the client side are reflected in the database in real-time, but not necessarily

Re: [qooxdoo-devel] How to select an item in selectbox?

2010-05-10 Thread rsantiagopaz
check the example http://tinyurl.com/2v28sn2 -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-select-an-item-in-selectbox-tp5029330p5032629.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] How to select an item in selectbox?

2010-05-10 Thread alexander.volik
As I use .addTarget method of qx.data.controller.Object. It need to pick target object and it's property (for example property value for the textBox): addTarget(Object targetObject, String targetProperty, String sourceProperty, Boolean bidirectional?, Map options?, Map reverseOptions?) What the

Re: [qooxdoo-devel] Building plugins

2010-05-10 Thread Petr Kobalíček
Hi, compiling custom code can ve very efficiently achieved by yuicompressor. The QxBuild is only tool how to use qooxdoo as a one big package. I understand the qooxdoo build process and I understand the advantages of it, but it has also disadvantages. The simplest application with some widgets

Re: [qooxdoo-devel] about Popup and ContextMenu

2010-05-10 Thread rsantiagopaz
Forget it. Now I know de zindex function. -- View this message in context: http://qooxdoo.678.n2.nabble.com/about-Popup-and-ContextMenu-tp5032208p5032869.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] MResizable onresize event?

2010-05-10 Thread Greg Beaver
On 5/10/10 4:34 AM, Christian Hagendorn wrote: Hi Greg, if I understood you correct, then the resize event could the right choice. The event is fired when the size from a widget is changed and it contains the new top, left, width and height. Have a look at the Demo Browser [1], the first

Re: [qooxdoo-devel] Require a live form; what are my options?

2010-05-10 Thread Werner Thie
Nick Watkins wrote: I can't seem to find anything regarding the subject, or perhaps I'm not searching for the right thing. For an application I'm developing, I require a form whose elements are connected to data in a database. Changes on the client side are reflected in the database in

Re: [qooxdoo-devel] ajax request problem

2010-05-10 Thread uglyhunK
Yes, it is working. I totally ignored that asynchronous principle. :-) Thank you Cheers -- View this message in context: http://qooxdoo.678.n2.nabble.com/ajax-request-problem-tp5022288p5034247.html Sent from the qooxdoo mailing list archive at Nabble.com.