use of org.gwtbootstrap3.client.ui.gwt.ButtonCell in project kie-wb-common by kiegroup.
the class CrudComponentViewImpl method showEditButtons.
@Override
public void showEditButtons() {
final Column<MODEL, String> column = new Column<MODEL, String>(new ButtonCell(IconType.EDIT, ButtonType.PRIMARY, ButtonSize.SMALL)) {
@Override
public String getValue(final Object model) {
return translationService.getTranslation(CrudComponentConstants.CrudComponentViewImplEditInstanceButton);
}
};
column.setFieldUpdater(new FieldUpdater<MODEL, String>() {
@Override
public void update(final int index, final Object model, final String s) {
presenter.editInstance(index);
}
});
table.addColumn(column, "");
}
use of org.gwtbootstrap3.client.ui.gwt.ButtonCell in project kie-wb-common by kiegroup.
the class NotificationWidgetViewImpl method initDelete.
private void initDelete() {
AbstractCell<NotificationRow> buttonCell = new AbstractCell<NotificationRow>(ClickEvent.getType().getName()) {
@Override
public void render(Context context, NotificationRow value, SafeHtmlBuilder sb) {
Button button = new Button();
button.setSize(ButtonSize.SMALL);
button.add(new Icon(IconType.TRASH));
sb.append(SafeHtmlUtils.fromTrustedString(button.toString()));
}
@Override
public void onBrowserEvent(Context context, Element parent, NotificationRow value, NativeEvent event, ValueUpdater<NotificationRow> valueUpdater) {
if (!readOnly) {
delete(value);
}
}
};
Column<NotificationRow, NotificationRow> deleteColumn = new Column<NotificationRow, NotificationRow>(buttonCell) {
@Override
public NotificationRow getValue(NotificationRow object) {
return object;
}
};
deleteColumn.setSortable(false);
table.addColumn(deleteColumn, presenter.getDeleteLabel());
table.setColumnWidth(deleteColumn, 60, Style.Unit.PX);
}
use of org.gwtbootstrap3.client.ui.gwt.ButtonCell in project kie-wb-common by kiegroup.
the class DataObjectBrowserViewImpl method addRemoveRowColumn.
private void addRemoveRowColumn() {
ButtonCell buttonCell = new ButtonCell(IconType.TRASH, ButtonType.DANGER, ButtonSize.SMALL);
Column<ObjectProperty, String> column = new Column<ObjectProperty, String>(buttonCell) {
@Override
public String getValue(ObjectProperty objectProperty) {
return Constants.INSTANCE.objectBrowser_action_delete();
}
};
column.setFieldUpdater(new FieldUpdater<ObjectProperty, String>() {
@Override
public void update(int index, ObjectProperty objectProperty, String value) {
if (!readonly) {
presenter.onDeleteProperty(objectProperty, index);
}
}
});
propertiesTable.addColumn(column, "");
propertiesTable.setColumnWidth(column, calculateButtonSize(Constants.INSTANCE.objectBrowser_action_delete()), Style.Unit.PX);
}
use of org.gwtbootstrap3.client.ui.gwt.ButtonCell in project kie-wb-common by kiegroup.
the class DependencyListWidget method init.
@PostConstruct
public void init() {
dependencyPagedJarTable = IOC.getBeanManager().lookupBean(ArtifactListPresenter.class).getInstance();
dependencyPagedJarTable.setup(ColumnType.NAME, ColumnType.GAV, ColumnType.LAST_MODIFIED);
// Column to view KJAR's pom
final Column<JarListPageRow, String> openColumn = new Column<JarListPageRow, String>(new ButtonCell(ButtonSize.EXTRA_SMALL)) {
@Override
public String getValue(JarListPageRow row) {
return M2RepoEditorConstants.INSTANCE.Open();
}
};
openColumn.setFieldUpdater(new FieldUpdater<JarListPageRow, String>() {
@Override
public void update(int index, JarListPageRow row, String value) {
dependencyPagedJarTable.onOpenPom(row.getPath());
}
});
// Column to allow selection of dependency
final Column<JarListPageRow, String> selectColumn = new Column<JarListPageRow, String>(new ButtonCell(ButtonSize.EXTRA_SMALL)) {
@Override
public String getValue(JarListPageRow row) {
return ProjectEditorResources.CONSTANTS.Select();
}
};
selectColumn.setFieldUpdater(new FieldUpdater<JarListPageRow, String>() {
@Override
public void update(final int index, final JarListPageRow row, final String value) {
onPathSelect.execute(row.getPath());
}
});
final ArtifactListView artifactListView = dependencyPagedJarTable.getView();
artifactListView.addColumn(openColumn, M2RepoEditorConstants.INSTANCE.Open(), false, 100.0, Style.Unit.PX);
artifactListView.addColumn(selectColumn, ProjectEditorResources.CONSTANTS.Select(), 100.0, Style.Unit.PX);
artifactListView.setContentHeight("200px");
artifactListView.asWidget().getElement().getStyle().setMarginLeft(0, Style.Unit.PX);
artifactListView.asWidget().getElement().getStyle().setMarginRight(0, Style.Unit.PX);
panel.add(artifactListView);
}
use of org.gwtbootstrap3.client.ui.gwt.ButtonCell in project kie-wb-common by kiegroup.
the class ProjectClassListViewImpl method addRemoveRowColumn.
private void addRemoveRowColumn() {
Column<ClassRow, String> column = new Column<ClassRow, String>(new ButtonCell(IconType.TRASH, ButtonType.DANGER, ButtonSize.SMALL)) {
@Override
public String getValue(ClassRow classRow) {
return Constants.INSTANCE.project_class_list_action_delete();
}
};
column.setFieldUpdater(new FieldUpdater<ClassRow, String>() {
@Override
public void update(int index, ClassRow classRow, String value) {
if (!readOnly) {
onRemoveClass(classRow);
}
}
});
dataGrid.addColumn(column, Constants.INSTANCE.project_class_list_action_column());
dataGrid.setColumnWidth(column, 10, Style.Unit.PCT);
}
Aggregations