Example usage for com.vaadin.event LayoutEvents.LayoutClickNotifier interface-usage

List of usage examples for com.vaadin.event LayoutEvents.LayoutClickNotifier interface-usage

Introduction

In this page you can find the example usage for com.vaadin.event LayoutEvents.LayoutClickNotifier interface-usage.

Usage

From source file org.vaadin.alump.gridstack.GridStackLayout.java

/**
 * Vaadin layout using gridstack.js library to layout components
 *
 * gridstack.js by Pavel Reznikov: http://troolee.github.io/gridstack.js/
 */
@JavaScript({ "jquery-1.11.3.min.js", "jquery-ui.min.js", "lodash.min.js", "gridstack.js" })

From source file org.vaadin.alump.masonry.MasonryLayout.java

/** Layout that uses Masonry JavaScript library to layout components
 * Masonry by David DeSandro: http://masonry.desandro.com/
 */
@JavaScript({ "masonry.pkgd.min.js" })
public class MasonryLayout extends AbstractLayout implements LayoutEvents.LayoutClickNotifier {