var i=0;i<10; i++) {<o:p></o:p></span></font></p>
<p class=MsoPlainText><font size=2 face="Courier New"><span style='font-size:
10.0pt'> te2_8.add(new
QxTreeFolder("Item " + i));<o:p></o:p&g
Hi!
I don't see any reason why this shouldn't work. Maybe you could send us
a little demo (just a few lines of code) which show your problem.
Thanks.
Cheers,
Sebastian
Okan, Varol schrieb:
> All,
>
>
>
> Is there no way to include a QxTree in a resizable QxWindow (or another
> parent
I didn't put it in a Window but I did put one inside another container that resized and the only way I got it to look right was to use a fixed width and height for the Tree and when the container resized I had to then change the width and height of the tree. I found no automatic way to make this wo
All,
Is there no way to include a QxTree in a resizable QxWindow (or
another parent ?) and have it not change the QxWindows height (besides making
the height a static size) ?
If someone can point me in the right direction (yes or
no) that would be a start. I will add a code snipple
Folks I need help with this
I have a QxTree inside of a QxWindow. If the tree exceeds
the current height of the TreeView it will automatically resize the parent
QxWindow instead of displaying the vertical scrollbar.
Can any one post a simple code-sample to have the tree (or
list) be
Hi Sebastian,
Thanks for your replay.
I think that my code works fine. after all it's just a copy of example
tree_5 from the test map. What I don't get is that a empty entry is plaeced
in the tree after a drop. But when i put an alert in front of the code al
works fine. It looks like that the al
As a follow up, I did some poking around
and figured it out. For those of you who are interested, to automatically
change the icon do the following:
function updateIcon(node){
...
node.setIcon("pics/icon2.gif");
var oIcon = node.getIconObject();
I have the following code:
main(){
...
var
node = new QxTreeFile("Node1", "pics/icon1.gif", "pics/selectedicon.gif");
}
function updateIcon(node){
...
node.setIcon("pics/icon2.gif");
...
}
What I'm trying to do is update the
icon for the Qx
Hi!
I have problems to understand what you mean. Does this cloning doesn't
work, or is your code the problem? Maybe you need to clone recursively.
Sebastian
Krimpen schrieb:
> Hi,
> I'am trying to do a drag drop from one Qxtree to another tree, without
> modifying the 'drag' tree. To do this
Hi,
I'am trying to do a drag drop from one Qxtree to another tree, without
modifying the 'drag' tree. To do this i'am using the eventhandlers from
tree_5 from the test map with a smal modification as follows
function handleDragDropFilter(e){
var vType = e.getDropDataTypes()[0];
var vSo
Here is my first contribution to qooxdoo! Attached is a patch that allows the
root node of a tree (the QxTree element) to be hidden without hiding its
children. This allows creating a tree which displays as if it had a number of
top-level nodes (even though there is an invisible root node). This
Jim Hunter schrieb:
That was a good idea using _beforeAppear or _afterAppear and they almost
worked. They did set the item as selected and when I clicked on another
item the first one did get un-selected. The problem was then when I did
a show on the list a second time (this list is hidden exce
That was a good idea using _beforeAppear or _afterAppear and they almost worked. They did set the item as selected and when I clicked on another item the first one did get un-selected. The problem was then when I did a show on the list a second time (this list is hidden except when needed) the orig
Hi Jim,
I would suggest to select this initially using a beforeAppear event (of
this file/folder) instead. The problem is that this selection stuff
needs the selection manager of the tree. You must add the child to the
tree first, before you can select it. Alterativly it should also be
possib
I have a QxTree that has about 50 QxTreeFile items in 11 QxTreeFolder objects. I am initially setting one of the QxTreeFile items to selected via setSelected(true). This works and when I display the tree that item is showing as selected. The issue is that when I select another item, the first one d
Hi Petr,
this was a bug in qooxoo. Should be fixed now in CVS.
Sebastian
Petr Šimek schrieb:
Hi qooxdoo people,
when I use QxTree as property of my object (child of QxDockLayout),
everything seems ok, but I get this message from qooxdoo debugger:
QxTree[HASHCODE:67]
000375:Failed to execute
Hi qooxdoo people,when I use QxTree as property of my object (child of QxDockLayout), everything seems ok, but I get this message from qooxdoo debugger:QxTree[HASHCODE:67]
000375:Failed
to execute "_modifyParent()":Modification of property "parent" failed
with exception(propValue.getParent() has no
Ok don't worry - works. Sorry for the spam.
- Peter
On 2/22/06, Sebastian Werner <[EMAIL PROTECTED]> wrote:
Peter Sheldrick schrieb:> What would the loop look like? Visit every node and call the event:> "changeSelection"? Can you make an example?This has nothing to do with the selection. You mu
Perhaps my last post was obscure - close() does work. Sometimes. Can
you confirm that it behaves oddly? Why is forEach not in the doc for
QxTree? Why does
tree.getItems().forEachChild( function(o) { o.close(); } ); do nothing?On 2/22/06, Peter Sheldrick <
[EMAIL PROTECTED]> wrote:Thanks allot: I d
Thanks allot: I did it by stuffing all the folders in a array and
looping over that - but this way it doesn't need these extra vars. But
this puzzles me: With
function expand(tree) {
tree.getItems().forEach( function(o) { o.open(); } );
}
and then
expand(tree);
the whole tree gets expanded. But
Hi,
Am 22.02.2006 13:55, Sebastian Werner schrieb:
Peter Sheldrick schrieb:
What would the loop look like? Visit every node and call the event:
"changeSelection"? Can you make an example?
This has nothing to do with the selection. You must just call open() on
each tree folder. I think the
Peter Sheldrick schrieb:
What would the loop look like? Visit every node and call the event:
"changeSelection"? Can you make an example?
This has nothing to do with the selection. You must just call open() on
each tree folder. I think the best is to implement this in QxTreeFolder,
and let eac
What would the loop look like? Visit every node and call the event: "changeSelection"? Can you make an example?
- PeterOn 2/22/06, Sebastian Werner <[EMAIL PROTECTED]> wrote:
Peter Sheldrick schrieb:> Is there a way to expand all the braches of a QxTree or to collapse them?I am sorry. This is not
Peter Sheldrick schrieb:
Is there a way to expand all the braches of a QxTree or to collapse them?
I am sorry. This is not implemented directly in QxTree. You must loop
through the structure yourself or even better could send a patch to
include it in QxTree ;)
Sebastian
- Peter
Is there a way to expand all the braches of a QxTree or to collapse them?
- Peter
Ah I got it. Thanks Oliver.
>please search the archive of this mailing list.
>some days ago we discussed this. search for appearance.
>you can also have a look at my patch against the tree demo i sended
>yesterday to this list
>
>Olli
>
>
>Yue schrieb:
>
>>Hi
>>
>>Thanks for the new release of q
please search the archive of this mailing list.
some days ago we discussed this. search for appearance.
you can also have a look at my patch against the tree demo i sended
yesterday to this list
Olli
Yue schrieb:
Hi
Thanks for the new release of qooxdoo. Great job!
A question concerning t
Hi
Thanks for the new release of qooxdoo. Great job!
A question concerning the upgrading of qxtree class. It appears that in
the 0.5 version the tree items no longer have pretty icons. Instead, the tree
folder items have folder icons and the tree nodes have file icons.
Seeing from demo/example
Hi,I'm looking at the Tree_1.html (stable) and trying to figure out how to "listen" for user clicks on the tree. I see that it uses a QxWidget instance and place it on top of the tree to listen for commands.
It then adds the command to the main document. I dont get this!How can I get the tree file
Janne Schulz schrieb:
Hi!
I found a bug with the QxTree widget: for example
public/test/user/Tree_1.html: if you select (=click) very quick various
items, the whole tree will be selected after a short time. All the
selected items will not be deselected if you choose a different node.
I use
Hi!I found a bug with the QxTree widget: for example public/test/user/Tree_1.html: if you select (=click) very quick various items, the whole tree will be selected after a short time. All the selected items will not be deselected if you choose a different node.
I use the latest RENDERER Snapshot (i
Aidas Kasparas schrieb:
1) Open Tree4 example in dev. branch.
2) Select Root/Inbox/Big/Item 10
3) press <-
4) press down
Current folder says "Item 11". Expected behaviour "Spam"
Thank you for your report. Fixed in CVS.
Sebastian
---
Yes! Verified! I also have seen the bug with FireFox 1.0.7
Aidas Kasparas schrieb:
1) Open Tree4 example in dev. branch.
2) Select Root/Inbox/Big/Item 10
3) press <-
4) press down
Current folder says "Item 11". Expected behaviour "Spam"
--
Mit freundlichen Grüßen
Dietrich Streifert
Visi
1) Open Tree4 example in dev. branch.
2) Select Root/Inbox/Big/Item 10
3) press <-
4) press down
Current folder says "Item 11". Expected behaviour "Spam"
--
Aidas Kasparas
IT administrator
GM Consult Group, UAB
---
This SF.Net email is spons
Oliver Vogel schrieb:
O.K. this is the smalest Example where the error occours.
i found out that the problem is the Button INSIDE the Layout.
if there is NO Lauyout or the button is outside the layout it works fine.
The bug is fixed in CVS. The problem was in QxEventManager.
Sebastian
HOPE,
Aidas Kasparas schrieb:
Hi,
I played with tree exampes in dev branch from website and I found some
things which could be better. I realize I see work in progress so do not
expect to see perfect result. Just providing some points which would be
good to find fixed in final version.
1) if tree is
O.K. this is the smalest Example where the error occours.
i found out that the problem is the Button INSIDE the Layout.
if there is NO Lauyout or the button is outside the layout it works fine.
HOPE, THIS HELPS
Olli
window.application.main = function()
{
var d = application.getClientWi
I also had this errormessage but did not figure out when it occured.
Maybe your example helps to track it down!
Oliver Vogel schrieb:
No Problem:
if the button is enabled, everything works fine.
But if you click at the DISABLED button an exception is raised.
The exact description of the excep
No Problem:
if the button is enabled, everything works fine.
But if you click at the DISABLED button an exception is raised.
The exact description of the exception is "Laufzeitfehler in Microsoft
JScript: 'this._dragCache.sourceWidget' ist Null, oder kein Objekt.
the (sorry - compressed) Source
Oliver Vogel schrieb:
Hello Sebastian.
please have a look at this code snipplet.
it is part of my wizard.
Please run the script and click at the disabled button. then you can
see, what is my problem!
No, please explain it a bit more. Just send out examples is the most
time not really helpful.
Hello Sebastian.
please have a look at this code snipplet.
it is part of my wizard.
Please run the script and click at the disabled button. then you can
see, what is my problem!
P.S. this error only occours, if the button is inside the
Layout-Manager. A simple button like in your demos wors fine
Perfect now!
Sebastian Werner schrieb:
Dietrich Streifert schrieb:
Great!
Here the observations in the examples:
1) If you uncheck the checkbox 'use tree lines' the treelines which
are already drawn remain. All newly drawn lines (if eg. a treefolder
is expanded) are drawn without lines.
Aidas Kasparas schrieb:
Hi,
I played with tree exampes in dev branch from website and I found some
things which could be better. I realize I see work in progress so do not
expect to see perfect result. Just providing some points which would be
good to find fixed in final version.
1) if tree is
Dietrich Streifert schrieb:
Great!
Here the observations in the examples:
1) If you uncheck the checkbox 'use tree lines' the treelines which are
already drawn remain. All newly drawn lines (if eg. a treefolder is
expanded) are drawn without lines.
2) The checkboxes 'use double click' and
Oliver Vogel schrieb:
1) the cursor-keys (up and down) will not change the selcetion in the
tree (in IE in demo Tree 1)
2) i wrote a litte tree demo with only the root of the tree (no node)
and the root appears in the MIDDLE of the tree - canvas. not at the top
Both are fixed in CVS.
Sebastia
Oliver Vogel schrieb:
@ Sebastian
Have a look at this simple sample (it is from your demo but shorten)
if you "run" this page, you see, what's wrong ;-)
Yes, it is fixed in CVS.
Sebastian
Olli
--- CUT ---
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
http://www.w3.org/1999/xhtml"; x
Oliver Vogel schrieb:
i tryed to assign a custom icon to a TreeNode. But this will not work
(there is NO icon visible). in the "old" tree it works fine (0.1.4) but
in renderer it will not
Currently renderer does not allows you to use custom icon here. Please
wait for the appearance/behaviour
Hi,
I played with tree exampes in dev branch from website and I found some
things which could be better. I realize I see work in progress so do not
expect to see perfect result. Just providing some points which would be
good to find fixed in final version.
1) if tree is big and cursor goes out of
i tryed to assign a custom icon to a TreeNode. But this will not work
(there is NO icon visible). in the "old" tree it works fine (0.1.4) but
in renderer it will not
Olli
Sebastian Werner schrieb:
Howdy.
Our long awaited tree implementation is back in RENDERER. It is not
completly tested.
@ Sebastian
Have a look at this simple sample (it is from your demo but shorten)
if you "run" this page, you see, what's wrong ;-)
Olli
--- CUT ---
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
http://www.w3.org/1999/xhtml"; xml:lang="de">
window._htmlstart=(new
Date).valueOf(
Great!
Here the observations in the examples:
1) If you uncheck the checkbox 'use tree lines' the treelines which are
already drawn remain. All newly drawn lines (if eg. a treefolder is
expanded) are drawn without lines.
2) The checkboxes 'use double click' and 'use hover effects' are not
1) the cursor-keys (up and down) will not change the selcetion in the
tree (in IE in demo Tree 1)
2) i wrote a litte tree demo with only the root of the tree (no node)
and the root appears in the MIDDLE of the tree - canvas. not at the top
Olli
Sebastian Werner schrieb:
Howdy.
Our long a
GREAT!
now i can use RENDERER in my app,
i will get it from the CVS as soon as possible and test it (by
developing the app ;-)
Olli
Sebastian Werner schrieb:
Howdy.
Our long awaited tree implementation is back in RENDERER. It is not
completly tested. Bug reports are really appreciated.
Sebastian Werner schrieb:
Howdy.
Our long awaited tree implementation is back in RENDERER. It is not
completly tested. Bug reports are really appreciated.
Some examples:
http://qooxdoo.oss.schlund.de/demo/dev/public/test/user/Tree_1.html
http://qooxdoo.oss.schlund.de/demo/dev/public/test/use
Howdy.
Our long awaited tree implementation is back in RENDERER. It is not
completly tested. Bug reports are really appreciated.
Regards,
Sebastian
---
This SF.Net email is sponsored by the JBoss Inc. Get Certified Today
Register for a JB
55 matches
Mail list logo