toolstrip.addToolButtonRight(addBtn);
ToolButton removeBtn = new ToolButton("Remove", new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
final SocketBinding editedEntity = form.getEditedEntity();
Feedback.confirm(
Console.MESSAGES.deleteTitle("Socket Binding"),
Console.MESSAGES.deleteConfirm("Socket Binding " + editedEntity.getName()),
new Feedback.ConfirmationHandler() {
@Override
public void onConfirmation(boolean isConfirmed) {
if(isConfirmed)
presenter.onDelete(editedEntity);
}
});
}
});
removeBtn.ensureDebugId(Console.DEBUG_CONSTANTS.debug_label_remove_socketBindingView());
toolstrip.addToolButtonRight(removeBtn);
/*
TODO: this is more complex then I thought...
toolstrip.addToolButtonRight(
new ToolButton(Console.CONSTANTS.common_label_newGroup(), new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
presenter.launchNewGroupDialogue();
}
}));
*/
// -----------
VerticalPanel panel = new VerticalPanel();
panel.setStyleName("rhs-content-panel");
ContentHeaderLabel nameLabel = new ContentHeaderLabel("Socket Bindings");
panel.add(nameLabel);
panel.add(new ContentDescription(Console.CONSTANTS.common_socket_bindings_desc()));
panel.add(new ContentGroupLabel(Console.MESSAGES.available("Socket Bindings")));
socketTable = new SocketTable();
HorizontalPanel tableOptions = new HorizontalPanel();
tableOptions.getElement().setAttribute("cellpadding", "2px");
groupFilter = new ComboBox();
groupFilter.addValueChangeHandler(new ValueChangeHandler<String>() {
@Override
public void onValueChange(ValueChangeEvent<String> event) {
presenter.onFilterGroup(event.getValue());
}
});
Widget groupFilterWidget = groupFilter.asWidget();
groupFilterWidget.getElement().setAttribute("style", "width:200px;");
tableOptions.add(new Label("Socket Binding Group:"));
tableOptions.add(groupFilterWidget);
tableOptions.getElement().setAttribute("style", "float:right;");
panel.add(tableOptions);
DefaultCellTable socketTableWidget = socketTable.asWidget();
panel.add(toolstrip.asWidget());
panel.add(socketTableWidget);
DefaultPager pager = new DefaultPager();
pager.setDisplay(socketTableWidget);
panel.add(pager);
ScrollPanel scroll = new ScrollPanel(panel);
layout.add(scroll);
layout.setWidgetTopHeight(titleBar, 0, Style.Unit.PX, 40, Style.Unit.PX);
layout.setWidgetTopHeight(scroll, 40, Style.Unit.PX, 100, Style.Unit.PCT);
// -----------
form = new Form<SocketBinding>(SocketBinding.class);
form.setNumColumns(2);
FormToolStrip<SocketBinding> detailToolStrip = new FormToolStrip<SocketBinding>(
form,
new FormToolStrip.FormCallback<SocketBinding>()
{
@Override
public void onSave(Map<String, Object> changeset) {
SocketBinding updatedEntity = form.getUpdatedEntity();
presenter.saveSocketBinding(
updatedEntity.getName(),
form.getEditedEntity().getGroup(), // TODO: why does it not get pushed through?
form.getChangedValues()
);
}