com.inmethod.grid.toolbar.AbstractHeaderToolbar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-inmethod-grid Show documentation
Show all versions of wicketstuff-inmethod-grid Show documentation
Advanced grid components for Apache Wicket
The newest version!
package com.inmethod.grid.toolbar;
import org.apache.wicket.model.IModel;
import com.inmethod.grid.common.AbstractGrid;
/**
* Toolbars extending this class are displayed in table header right below the row displaying column
* names. The toolbar must produce markup with structure such as
*
*
* <th>column 1 data</th>
* <th>column 2 data</th>
* ...
* <th>column n data</th>
*
*
* as it's put directly inside a table row.
*
* @param
* grid model object type
* @param
* row/item model object type
*
* @author Matej Knopp
*/
public abstract class AbstractHeaderToolbar extends AbstractToolbar
{
private static final long serialVersionUID = 1L;
/**
* Constructor
*
* @param dataGrid
* @param model
*/
public AbstractHeaderToolbar(AbstractGrid dataGrid, IModel model)
{
super(dataGrid, model);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy