Package lazyj.widgets

This package is a collection of useful HTML helper objects.

See: Description

Package lazyj.widgets Description

This package is a collection of useful HTML helper objects.

Here is a sample implementation for building a tree:

// Make sure one of the root entries is first here!
DBFunctions db = new DBFunctions(dbProp, "SELECT id,parent,name FROM tree ORDER BY id ASC;");

Set<Integer> selected = new HashSet<Integer>();

selected.add(1);

Select<Integer, String> select = new Select<Integer, String>(Tree.getDefaultTree(db).getOptions(), selected);
        
Since:
1.0.4