use of com.haulmont.cuba.web.widgets.CubaEnhancedTable in project cuba by cuba-platform.
the class NewPasswordsListCompanion method allowTextSelection.
@Override
public void allowTextSelection(Table passwordsTable) {
CubaEnhancedTable vPasswordsTable = (CubaEnhancedTable) WebComponentsHelper.unwrap(passwordsTable);
vPasswordsTable.setTextSelectionEnabled(true);
}
use of com.haulmont.cuba.web.widgets.CubaEnhancedTable in project cuba by cuba-platform.
the class EntityInspectorBrowseCompanion method setTextSelectionEnabled.
@Override
public void setTextSelectionEnabled(Table table, boolean enabled) {
CubaEnhancedTable enhancedTable = (CubaEnhancedTable) WebComponentsHelper.unwrap(table);
enhancedTable.setTextSelectionEnabled(enabled);
}
Aggregations