Re: [qooxdoo-devel] Table selection: MULTIPLE_INTERVAL_SELECTION_TOGGLE

2007-07-30 Thread dperez
Implemented! Demo in frontend/application/demobrowser/source/html/example/TreeCheckBox_1.html dperez wrote: > > Hi, > > I would like to implement a new selection mode for table and treevirtual. > > No we have: > > /** {int} The selection mode "none". Nothing can ever be selected. */ >

Re: [qooxdoo-devel] TabIndex problem for qx.ui.form.TextField() in FIREFOX browser

2007-07-30 Thread sucharitha lakshmi
Its 0.7 version. Can you send me the sample code. Regards, Sucharitha On 7/30/07, sucharitha lakshmi <[EMAIL PROTECTED]> wrote: > > Hi, >I am trying put tabIndex property for TextFields. > The code is as follows, > txtfield= new qx.ui.form.TextField(); > with(txtfield) >

Re: [qooxdoo-devel] TabIndex problem for qx.ui.form.TextField() in FIREFOX browser

2007-07-30 Thread dperez
Which version of Qooxdoo? It's working ok for me for FF 2.0. sucharitha lakshmi wrote: > > Hi, >I am trying put tabIndex property for TextFields. > The code is as follows, > txtfield= new qx.ui.form.TextField(); > with(txtfield) >{ > setT

Re: [qooxdoo-devel] Appearance issues

2007-07-30 Thread Jim Hunter
One more thing: once I have this code working, how do I apply one of the appearances or themes to a given object? I use these to color text (Atoms) on the page. I have no control over the names or the information in the Apperance, it comes from a database. These used to be CSS classes but I changed

Re: [qooxdoo-devel] Trouble using embed.iframe, any other way?

2007-07-30 Thread johnl
Thanks. I replaced my server code with javascript to generate the HTML. Now I have a few other questions: 1) How would I call a qooxdoo object's member function from the generated html in the HtmlEmbed? 2) How can I scroll to a particular element in the HtmlEmbed text? Thanks again. David Fa

[qooxdoo-devel] How to use ContendCellImage Class in ListView ?

2007-07-30 Thread Joachim Weber
Hi, I try to fill a qx.ui.listview.ListView with Data-fields containing images. The following code works fine: var lc = { name : { label : "Name", width : 200, type : "text" }, icon : { width : 28, type : "image", align : "center" } }; var ld = []; ld.push({ name : { text : "sometext" }

Re: [qooxdoo-devel] Appearance issues

2007-07-30 Thread Jim Hunter
Great info, thanks. What is the syntax for declaring something like BOLD or LINE-THROUGH for the font? I used to do it with an additional line of: this.font.setUnderline(true) or this.font.setItalic(true) etc. Is it still the same? Where does that line now go? Previously I would create the font bef

[qooxdoo-devel] TabIndex problem for qx.ui.form.TextField() in FIREFOX browser

2007-07-30 Thread sucharitha lakshmi
Hi, I am trying put tabIndex property for TextFields. The code is as follows, txtfield= new qx.ui.form.TextField(); with(txtfield) { setTop(20); setLeft(10); setWidth(10); }; txtfield.setT

Re: [qooxdoo-devel] Table font size increases if 'array join' is set, after migration (0.7 -> 0.7.1)

2007-07-30 Thread Ulrich Möllmann
Hi Dietrich, thank you for the quick bug fixing :-) Dietrich Streifert schrieb: > Hi Ulrich, > > I've fixed that in rev. 9130 for branches/legacy_0_7_x and rev. 9135 for > trunk. > > Here is the changeset for 0.7.1: > > http://svn.sourceforge.net/qooxdoo/?rev=9130&view=rev > > Ulrich Möllm

Re: [qooxdoo-devel] TreeVirtual with checkboxes

2007-07-30 Thread dperez
Hi, The new class qx.ui.treevirtual.TreeCheckBox implements this feature. A new demo TreeCheckBox_1.html has also been provided. New planned features: - If a branch is selected, all of its child nodes are also selected. The same happens with deselection - Support for automatic selected state of

[qooxdoo-devel] table filtering ???

2007-07-30 Thread B . ilgin
hi all... i wanna filtering data in a qooxdoo table... of course this operation be on the fly... but how to??? please hel... Bulent ILGIN - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files

Re: [qooxdoo-devel] qooxdoo-devel Digest, Vol 14, Issue 4

2007-07-30 Thread B . ilgin
hi all... i wanna filtering data in a qooxdoo table... of course this operation be on the fly... but how to??? please hel... Bulent ILGIN - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files

[qooxdoo-devel] Howto map JS object as parameter to RPC method by Java

2007-07-30 Thread VojBarZ
Hi all, I'm trying to send JS object as parameter to RPC method at the java side. Communication is OK, but I don't know how to set the type of the given object (or how to retype JSONObject to the java object) If I try the following code, the JSON conversion throws the exception: public void te

[qooxdoo-devel] RPC "local timeout expired"

2007-07-30 Thread Enaldo Amorim
Hi, I'm doing rpc async call's and It's not working. I'm getting the exception "Local error 1: Local time-out expired", and a javascript error: "response.id has no properties". Could anyone help me? Att. Enaldo Amorim - Th

Re: [qooxdoo-devel] row style properties

2007-07-30 Thread dperez
You have a sample in frontend\framework\source\class\qx\ui\table\rowrenderer\Default.js It sets the row background depending on the focused, select state, even/odd row number, Artem Bobrovskiy wrote: > > Hey, everybody. > > I am making a complex table with qx.ui.table class. I want to acc

Re: [qooxdoo-devel] resizer height

2007-07-30 Thread johnl
I see. Thank you, that is very helpful. David dperez wrote: > Hi, > > The height of the resizer itself isn't changed (equals always to auto), but > the height of the contained element is updated. > > Here is a piece of the source code of Resizer: > > _changeHeight: function(value) > { >

Re: [qooxdoo-devel] TreeVirtual with checkboxes

2007-07-30 Thread dperez
Solved this issue, by playing with the DOM! dperez wrote: > > Hi, > > I'm implementing the checkbox stuff in > qx.ui.treevirtual.SimpleTreeDataCellRenderer, and have no problems, apart > from this: > > I need to set the checked state in my checkbox. > I do it in this event: > qx.ui.table.ce

Re: [qooxdoo-devel] TreeVirtual with checkboxes

2007-07-30 Thread dperez
Hi, I'm implementing the checkbox stuff in qx.ui.treevirtual.SimpleTreeDataCellRenderer, and have no problems, apart from this: I need to set the checked state in my checkbox. I do it in this event: qx.ui.table.cellrenderer.Abstract.updateDataCellElement() I use the cellInfo.selected to know

Re: [qooxdoo-devel] Command in an Iframe

2007-07-30 Thread Fabian Jakobs
Elie Dumas schrieb: > Hi list, > > My app uses some qx.client.commands (Ctrl+N, Ctrl+S...) and an Iframe. > But when the focus is in the Iframe, the commands cannot be executed > any longer, they don't react any more. > > For example : > var iframe = new qx.ui.embed.Iframe('http://www.google.c

Re: [qooxdoo-devel] Table selection: MULTIPLE_INTERVAL_SELECTION_TOGGLE

2007-07-30 Thread Artem Bobrovskiy
30.07.07 в 12:45 dperez в своём письме писал(а): I think it's a good idea and I'd like to have the code for me :) > > Thanks Derrell for your answer and several hints. > > If my memory doesn't fail, I think that this is the standard behavior of > Win32 multiple selection listboxes. > Each click t

[qooxdoo-devel] Command in an Iframe

2007-07-30 Thread Elie Dumas
Hi list, My app uses some qx.client.commands (Ctrl+N, Ctrl+S...) and an Iframe. But when the focus is in the Iframe, the commands cannot be executed any longer, they don't react any more. For example : var iframe = new qx.ui.embed.Iframe('http://www.google.com'); iframe.setTop(100);

[qooxdoo-devel] row style properties

2007-07-30 Thread Artem Bobrovskiy
Hey, everybody. I am making a complex table with qx.ui.table class. I want to access to row style properties, background color, font style and all the stuff. The point is, I want to emphasize with color and font some rows, depending on different conditions. The best thing would be a renderer

Re: [qooxdoo-devel] html in table cell - update of element

2007-07-30 Thread westor
Hi Jared, that's similar what I do, but I also call the superclass in constructor. So here is my code: qx.Class.define("cms.myDataCellRenderer", { extend : qx.ui.table.cellrenderer.Abstract, construct : function() { this.base(arguments); }, members

Re: [qooxdoo-devel] Appearance issues

2007-07-30 Thread Fabian Jakobs
Hi Jim, > I just migrated to 0.7.2-pre (r9171) and my appearances are generating > errors when I try and run the app. I looked in the API viewer to see > what the new structure is and it says: Are you using trunk or the legacy_0_7 branch? I would strongly suggest to use legacy_0_7. This is where

Re: [qooxdoo-devel] Trouble using embed.iframe, any other way?

2007-07-30 Thread Fabian Jakobs
Hi John, from your screenshot it looks like the IFrame only contains plain HTML. I would suggest using the qx.ui.embed.HtmlEmbed widget, which is basically a very simple qooxdoo widget with a "html" property. This property will basically set "innerHTML" of the widget's root element. Best Fabi

Re: [qooxdoo-devel] Questions about Generator & Make Process

2007-07-30 Thread dperez
JSEclipse detects all syntax errors on the fly. I strongly recommend it. Just remember that 'make source' is only needed if you add a new source file, or change something that affects the dependencies order. For most cases, this doesn't happen. Philip Weaver-2 wrote: > > I do understand that

Re: [qooxdoo-devel] Questions about Generator & Make Process

2007-07-30 Thread dperez
Hi, >From Eclipse, I build my scripts by means of Ant scripts. This is directly supported by Eclipse. My Ant script calls generator.py. If someone interested, I can provide some starting code. Fabian Jakobs-2 wrote: > >> I do understand that I have an alternative of using JSEclipse or >> Ana

Re: [qooxdoo-devel] defineMain(function ... breaks with error

2007-07-30 Thread Fabian Jakobs
Hi Philip, > Hi, > > I updated my application fom 0.6.6 to 0.7.1 and still hav some problems... > > When I add the following code to the index html file: > > qx.core.Init.getInstance().defineMain(function() > { > ...code... > } > > I get the following error: > > qx.core.Init.getInstance().defin

Re: [qooxdoo-devel] Table selection: MULTIPLE_INTERVAL_SELECTION_TOGGLE

2007-07-30 Thread dperez
Thanks Derrell for your answer and several hints. If my memory doesn't fail, I think that this is the standard behavior of Win32 multiple selection listboxes. Each click toggles the selection state, to ease multiple selection. I have tried the code for this change, and it's quite an easy modific

Re: [qooxdoo-devel] Questions about Generator & Make Process

2007-07-30 Thread Fabian Jakobs
Hi Philip, > Thanks Sebastian. > > I'm really trying to gauge to what extent Qooxdoo with be able to > detect and handle syntax error and runtime errors. It also seems that > in the case of runtime errors Qooxdoo does not catch every error to > the log. Some of them still show up in my JavaScrip

Re: [qooxdoo-devel] Questions about Generator & Make Process

2007-07-30 Thread Fabian Jakobs
Philip Weaver schrieb: > I'm new to Qooxdoo. I understand that the make process of Qooxdoo can > be used to check the syntax of a project. But what is the most > efficient way to do this? When I run "make source" the script loads > 415 (qooxdoo) source files and takes forever "resolving dependen