List of usage examples for org.apache.wicket.markup.repeater Item subclass-usage
From source file au.org.theark.core.web.component.listeditor.ListItem.java
public class ListItem<T> extends Item<T> { private static final long serialVersionUID = 2012719539470105336L; public ListItem(String id, int index) { super(id, index);
From source file com.chitek.wicket.listeditor.EditorListItem.java
public class EditorListItem<T> extends Item<T> { private static final long serialVersionUID = 1L; public EditorListItem(String id, int index) { super(id, index); setModel(new ListItemModel());
From source file com.cubeia.network.shared.web.wicket.list.EditableListItem.java
public class EditableListItem<T> extends Item<T> { public EditableListItem(String id, int index) { super(id, index); setModel(new ListItemModel()); }
From source file com.wiquery.plugin.antilia.grid.RowItem.java
/** * * @author Ernesto Reinaldo Barreiro (reiern70@gmail.com) */ public class RowItem<E extends Serializable> extends Item<E> {
From source file de.tudarmstadt.ukp.csniper.webapp.support.wicket.RepeatingItem.java
/** * Adapted from http://wicketinaction.com/2008/10/building-a-listeditor-form-component/ * * @author Erik-Ln Do Dinh */ public class RepeatingItem<T> extends Item<T> {
From source file name.martingeisse.wicket.util.zebra.ZebraItem.java
/** * Specialized item implementation for zebra striping. * @param <T> the model type */ public class ZebraItem<T> extends Item<T> {
From source file org.cdlflex.ui.markup.html.repeater.data.table.DataTableCell.java
/**
* Extension of a cell Item that provides access to the row and table it belongs to.
*
* @param <T> Model object type
* @param <S> The type of the sorting parameter
*/
From source file wickettree.nested.BranchItem.java
/**
* A branch is a container for a single node and its children inside a
* {@link Subtree}.
*
* @see Subtree#newBranchItem(String, int, IModel)
*