Example usage for com.vaadin.client Util getChildElementIndex

List of usage examples for com.vaadin.client Util getChildElementIndex

Introduction

In this page you can find the example usage for com.vaadin.client Util getChildElementIndex.

Prototype

@Deprecated
public static int getChildElementIndex(Element childElement) 

Source Link

Document

Returns the index of the childElement within its parent.

Usage

From source file:info.magnolia.ui.vaadin.gwt.client.layout.thumbnaillayout.widget.EscalatorThumbnailsPanel.java

License:Open Source License

protected int getThumbnailIndex(Element element) {
    return absoluteIndex(Util.getChildElementIndex(element));
}