All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.inmethod.grid.toolbar.AbstractHeaderToolbar Maven / Gradle / Ivy

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