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. */
>
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)
>
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
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
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
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" }
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
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
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
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
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
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
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
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
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
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)
> {
>
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
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
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
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
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);
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
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
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
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
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
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
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
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
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
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
31 matches
Mail list logo