- A table structure is created for the items in the nodes that are third
and fourth from the top. In this case, it is necessary for the firstthree items of both nodes to have fixed lengths. (ITEM-ALIGNMENT =CL_GUI_LIST_TREE=>ALIGN_LEFT, ITEM-LENGTH = ...). A fixed font(ITEM-FONT = ITEM_FONT_FIXED) must be used for these items.Selection
The items of a node can be selected individually. A click on the folderor page symbol of a node selects the entire node.
You can also set the selection behavior of the tree so that one clickalways selects the entire node (ITEM_SELECTION-Set the parameter for theconstructor to initial).
Events
The events that occur appear on the right side of the screen. In thesample program, you can trigger the following events:
node_dbl_clk (node double-click)
A node is double-clicked. In the sample program, you can do so bydouble-clicking on the folder or page symbol. If ITEM_SELECTION is setto SPACE, this event is triggered if any section of the node isdouble-clicked.
item_dbl_click (item double-click)
An item in the tree was double-clicked. This event can only occur whenITEM_SELECTION = X.
expand_nc (expand no children)
A node can have the characteristic that it displays a plus symbol (+)for a folder or page, even when there are no lower-level nodes(children).To make this setting, use the expander field in TREEV_NODE.If users click on one of these nodes, the EXPAND_NC event is triggered.In the example, node Program> has this characteristic. The sampleprogram reacts to these events by copying two new nodes to the control.button_click
The user clicked a button.
link_click
The user clicked a link item.