Inmethod Grid
Overview
A data grid component with the following features:
- Fully Ajaxified
- Editable cells
- Pageable
- Wicket 1.4.x compatible (work on a generified branch is going on in SVN as of 13 Oct 2009)
Here's how it might look:

A possible alternative to this component is the Wicket Stuff Table component.
Documentation
Maven:
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>inmethod-grid</artifactId>
<version>1.4-SNAPSHOT</version>
</dependency>
<repository>
<id>wicketstuff</id>
<url>http://wicketstuff.org/maven/repository</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
Java:
final List<Person> personList = ... ; final listDataProvider = new ListDataProvider(personList); List<IGridColumn> cols = (List) Arrays.asList( new PropertyColumn(new Model("First Name"), "firstName"), new PropertyColumn(new Model("Last Name"), "lastName")); DataGrid grid = new DefaultDataGrid("grid", new DataProviderAdapter(listDataProvider), cols); add(grid);
HTML:
<div wicket:id="grid"></div>
Latest release
The latest release is available at TODO
Project maintainers
Matej Knopp
SVN Repository
The SVN repository of this project is available at: