Interface TreeviewNodeCreator
public interface TreeviewNodeCreator
Treeview component node renderer interface
With the implementation of the renderer, the treeview node can be customized. During the rendering process, a method has to be called, that will create a
TreeviewNode
. This node can contain any components, that the treeview will display as a node for the user.
- Since:
- 4.0
- Author:
- JBStrap
-
Method Summary
-
Method Details
-
createItem
The treeview node rendering process. This is where the creation of theTreeviewNode
is done, based on the specified data. The treeview component will display this, as an interface representation of the specified data. The created node can contain any component, that can be displayed on the interface.- Parameters:
record
- The record object, that will be used as a basis when creating the node- Returns:
- The created
TreeviewNode
component ornull
, if the specified record is not to be displayed. If the return value isnull
, the node will not be displayed.
-