Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Rebgui error in table widget

From: robert:muench:robertmuench at: 23-Mar-2007 13:28

On Mon, 19 Mar 2007 20:37:24 +0100, Graham Chiu <compkarori-gmail.com> wrote:
> 1. You can't get the text from a node unless there is an action > associated. This is because the get-picked-path is set after the > action is completed. > > So, if wish to write a directory requestor where each node is > displayed in the text area .. you can't without writing a wrapper > around the tree widget. And also it is thus tricky to write a tree > that dynamically accepts data.
Hi Graham, I think what you are looking for is a pure tree widget. The drop-tree is more related to a menu-system than to a tree.
> 2. There is no way to collapse the tree from the interface. So, if > you clicked on any of the buttons, the whole tree opens up. You then > have to laboriously close each node.
That's intended because I use the drop-tree to route the user through a process. And, opening each node over and over again is waste of time. I'm measuring my apps with "click-to-result".
> 3. The area to expand a node is the "+" sign. This is a very small > target for the mouse. Perhaps the whole node should be clickable?
No, that's intended as well. And why you have the quick-buttons 2,3,4 and 5. The thing is that the node has an aciton of it's own. And you can click on the text to fire the action without opening the node.
> At present if you click on a node with descendants, the whole tree shuts > down.
?? Not for me. Can you post the example. Robert