use of com.haulmont.cuba.web.gui.components.presentations.TablePresentations in project cuba by cuba-platform.
the class WebAbstractTable method loadPresentations.
@Override
public void loadPresentations() {
if (isUsePresentations()) {
presentations = new PresentationsImpl(this);
setTablePresentations(new TablePresentations(this));
} else {
throw new UnsupportedOperationException("Component doesn't use presentations");
}
}
Aggregations