List of usage examples for org.apache.wicket.markup.repeater.data DataView subclass-usage
From source file name.martingeisse.wicket.util.zebra.ZebraDataView.java
/**
* A {@link DataView} that supports "Zebra Striping" by setting the
* CSS classes "even" / "odd" on its items. CSS styles themselves
* are not set by this class.
* @param <T> the model type
*/
From source file net.dontdrinkandroot.extensions.wicket.component.AppendingDataView.java
/** * @author Philip Washington Sorst <philip@sorst.net> */ public abstract class AppendingDataView<T> extends DataView<T> { private final String itemTagName;
From source file net.dontdrinkandroot.wicket.component.repeater.AppendingDataView.java
public abstract class AppendingDataView<T> extends DataView<T> { private final String itemTagName; protected AppendingDataView(String id, IDataProvider<T> dataProvider, String itemTagName, long itemsPerPage) {
From source file org.apache.openmeetings.web.admin.SearchableDataView.java
/**
* Provides {@link SearchableDataProvider}
*
* @author swagner
*
* @param <T>
From source file org.apache.openmeetings.web.components.admin.SearchableDataView.java
/**
* Provides {@link SearchableDataProvider}
*
* @author swagner
*
* @param <T>
From source file org.devproof.portal.core.module.common.component.AutoPagingDataView.java
/** * Sets the current page with the PageParameter "page" * * @author Carsten Hufe */ public abstract class AutoPagingDataView<T> extends DataView<T> {
From source file org.headsupdev.agile.web.components.StripedDataView.java
/**
* TODO document me
*
* @author Andrew Williams
* @since 1.0
*/
From source file org.hippoecm.frontend.editor.workflow.MenuTester.java
public class MenuTester extends DataView { private static final long serialVersionUID = 1L; public MenuTester(String id, MarkupContainer component) { super(id, getProvider(component));
From source file org.hippoecm.frontend.plugins.console.editor.PropertiesEditor.java
public class PropertiesEditor extends DataView<Property> { private static final long serialVersionUID = 1L; static final Logger log = LoggerFactory.getLogger(PropertiesEditor.class);
From source file org.hippoecm.frontend.plugins.console.editor.PropertyValueEditor.java
class PropertyValueEditor extends DataView { private static final long serialVersionUID = 1L; private static final Logger log = LoggerFactory.getLogger(PropertyValueEditor.class);