Example usage for com.vaadin.v7.client.widget.grid DefaultEditorEventHandler subclass-usage

List of usage examples for com.vaadin.v7.client.widget.grid DefaultEditorEventHandler subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.v7.client.widget.grid DefaultEditorEventHandler subclass-usage.

Usage

From source file com.haulmont.cuba.web.widgets.client.grid.CubaEditorEventHandler.java

public class CubaEditorEventHandler<T> extends DefaultEditorEventHandler<T> {
    @Override
    protected boolean handleCloseEvent(Grid.EditorDomEvent<T> event) {
        boolean result = super.handleCloseEvent(event);
        if (result) {
            event.getDomEvent().stopPropagation();