|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use org.ujorm.wicket.component.grid | |
|---|---|
| org.ujorm.wicket.component.dialog.domestic | |
| org.ujorm.wicket.component.grid | |
| Classes in org.ujorm.wicket.component.grid used by org.ujorm.wicket.component.dialog.domestic | |
|---|---|
| AbstractDataProvider
This class called UjoDataProvider is an common Wicket DataProvider to create an AJAX DataTable component. |
|
| KeyColumn
A convenience implementation of column that adds a Ujo Property to the cell whose model is determined by the provided wicket key expression (same as used by PropertyModel) that is evaluated
against the current row's model object
Example:
public class DataTablePage2 extends WebPage { public DataTablePage2() { final EmployeeProvider userProvider = new EmployeeProvider(); final List<IColumn> columns = new ArrayList<IColumn>(); columns.add(new KeyColumn(Employee.ID)); columns.add(new KeyColumn(Employee.FIRSTNAME)); columns.add(new KeyColumn(Employee.LASTNAME)); columns.add(new KeyColumn(Employee.EMAIL)); columns.add(new KeyColumn(Employee.STUDENT)); add(new DefaultDataTable("datatable", columns, userProvider, 20)); } } The above will attach a label to the cell with a key model for the expression "name.first" |
|
| Classes in org.ujorm.wicket.component.grid used by org.ujorm.wicket.component.grid | |
|---|---|
| AbstractDataProvider
This class called UjoDataProvider is an common Wicket DataProvider to create an AJAX DataTable component. |
|
| CommonAction
The common action panel |
|
| KeyColumn
A convenience implementation of column that adds a Ujo Property to the cell whose model is determined by the provided wicket key expression (same as used by PropertyModel) that is evaluated
against the current row's model object
Example:
public class DataTablePage2 extends WebPage { public DataTablePage2() { final EmployeeProvider userProvider = new EmployeeProvider(); final List<IColumn> columns = new ArrayList<IColumn>(); columns.add(new KeyColumn(Employee.ID)); columns.add(new KeyColumn(Employee.FIRSTNAME)); columns.add(new KeyColumn(Employee.LASTNAME)); columns.add(new KeyColumn(Employee.EMAIL)); columns.add(new KeyColumn(Employee.STUDENT)); add(new DefaultDataTable("datatable", columns, userProvider, 20)); } } The above will attach a label to the cell with a key model for the expression "name.first" |
|
| ListDataProvider
This class called ListDataProvider is a List based DataProvider. |
|
| OrmDataProvider
This class called OrmDataProvider is an ORM based Wicket DataProvider. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||