Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/samie/vaadin-confirmdialog

ConfirmDialog Add-on for the Vaadin 6, 7, 8, and 14
https://github.com/samie/vaadin-confirmdialog

apache-license-2 java vaadin

Last synced: 21 days ago
JSON representation

ConfirmDialog Add-on for the Vaadin 6, 7, 8, and 14

Awesome Lists containing this project

README

        

= ConfirmationDialog =

Ever needed a present a confirmation dialog in a Vaadin application?

Here is a way to do it nicely. The ConfirmDialog add-on provides you with a configurable way of requesting user confirmation for a button click or some other some operation.

Defaults like size calculation, keyboard bindings and styling are all there, but of course you can provide your own. Take a look at the demo application for sample code and use cases.

Currently only two-way (yes,no) confirmation is supported. Vote for three-way (yes,no,cancel) if you need it. And for "monolog box" use the Vaadin's own showNotification method.

This is a server-side-only component, so no need to recompile the widgetset.

== Usage of the add-on ==

{{{
Button button = new Button("Unsafe action", e -> {

// The quickest way to confirm
ConfirmDialog.show(UI.getCurrent(), "Are you sure?",
(ConfirmDialog.Listener) dialog -> {
if (dialog.isConfirmed()) {
// Confirmed to continue
// DO STUFF
} else {
// User did not confirm
// CANCEL STUFF
}
});
});
add(button);
}}}

== Developing and building ==

Project sources are hosted in github.com.

Project is built with maven. Sources are directly in src directory, tests in test directory.

ConfirmTestApplication has main method that launches itself into an embedded jetty. Selenium2 tests are run against it.