Add-on Directory

← Back

GridTree

A Grid extension that allows to visualize a hierarchy of its Items

Author

Rating

Popularity

<100

A Grid extension that allows to visualize a hierarchical container. This is an experimental add-on, because I do not know what will be its value for the end-user. Right now it has minimal set of features - basically just showing the tree structure in a grid. I would like to figure out do people need it and if yes continue developing and fixing bugs. Please try it out and comment.

Known issues that are not supported:

  • Sorting does not take into account the hierarchical structure. Just plain sorting.
  • Hiding the column with expand button, does not create the expand button for the next first visible column.

Sample code

HierarchicalContainer hc= createContainer();

//Create grid tree container
GridTreeContainer treeContainer=new GridTreeContainer(hc);

//Second parameter in the constructor is an propertyId of the container 
// of the first visible column
GridTree gridTree= new GridTree(treeContainer,"id");

//add grid tree to layout

layout.addComponent(gridTree);

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Use maven instead of Ivy as a project build tool

Released
2015-09-07
Maturity
EXPERIMENTAL
License
Apache License 2.0

Compatibility

Framework
Vaadin 7.5+
Browser
Firefox
Google Chrome

Overlays - Vaadin Add-on Directory

Add component overlays to you application: image, text, in-place editor or anything else. Overlays - Vaadin Add-on Directory
If you have ever wanted to add a component on top of any other component, the Overlays add-on jar is for you. Image, text, in-place editor, etc. With ImageOverlay you can add a small (or large) images on top of other components. Like a "New"-icon to highlight a recently added feature or item. Or if you want to simply add a "No items found" text to a empty Table use the TextOverlay. You can create in-place editing, popups with CustomOverlay (Tip: use the Animator add-on to add a professional touch with fade-in/out animations) The overlays can bound and anchored to virtually any other Vaadin component. Also the anchor point in the overlay can be specified using Alignment constants. This allows quick positioning of overlay on Buttons, TextFields, Selects. Furthermore, the position can be fine-tuned using x and y offsets. Overlays can also be anchored to each other as well as stacked. Although widely used, this is still beta component and some browsers may misbehave. Please report any problems at Vaadin forum. Dependenies: Compiled with Java 5 and Vaadin 6.3.
Online Demo
Discussion Forum
Source Code
Author Homepage
Issue Tracker

Overlays version 0.9.8
Fixed removeComponent as well as setVisible for the Overlays. For CSS needed to fix scrolling in some applications see the highlight above.

Online