org.wicketstuff.datatables.columns.SpanPropertyColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-datatables Show documentation
Show all versions of wicketstuff-datatables Show documentation
DataTables jQuery integration for Wicket
package org.wicketstuff.datatables.columns;
import org.apache.wicket.extensions.markup.html.repeater.data.table.PropertyColumn;
import org.apache.wicket.model.IModel;
import org.wicketstuff.datatables.IDataTablesColumn;
/**
*
*/
public class SpanPropertyColumn extends PropertyColumn implements IDataTablesColumn {
public SpanPropertyColumn(IModel displayModel, S sortProperty, String propertyExpression) {
super(displayModel, sortProperty, propertyExpression);
}
@Override
public int getColspan() {
return 0;
}
@Override
public int getRowspan() {
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy