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

org.wicketstuff.datatables.columns.SpanPropertyColumn Maven / Gradle / Ivy

There is a newer version: 10.3.0
Show newest version
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