Example usage for com.google.gwt.query.client GQuery after

List of usage examples for com.google.gwt.query.client GQuery after

Introduction

In this page you can find the example usage for com.google.gwt.query.client GQuery after.

Prototype

public GQuery after(String html) 

Source Link

Document

Insert content after each of the matched elements.

Usage

From source file:com.wcs.wcslib.vaadin.widget.filtertablestate.client.FilterTableStateConnector.java

License:Apache License

public void addPopupOpenButton() {
    GQuery querySelector = $("." + COLUMN_SELECTOR_STYLE, filterTable);

    buttonElement = DOM.createDiv();/* ww w. j  a v a  2 s.c  o  m*/
    querySelector.after(buttonElement);
    querySelector.remove();

    buttonElement.addClassName(COLUMN_SELECTOR_STYLE);

    addButtonClickListener(buttonElement);
}