All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.vaadin.elements.GridTreeColumnElement Maven / Gradle / Ivy

The newest version!
package com.github.fluorumlabs.disconnect.vaadin.elements;

import com.github.fluorumlabs.disconnect.core.annotations.Import;
import com.github.fluorumlabs.disconnect.core.annotations.NpmPackage;
import com.github.fluorumlabs.disconnect.vaadin.Vaadin;
import js.lang.Any;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;

/**
 * <vaadin-grid-tree-column> is a helper element for the <vaadin-grid>
 * that provides default template and functionality for toggling tree/hierarchical items.
 *
 * 

Example:

*
<vaadin-grid items="[[items]]">
 *  <vaadin-grid-tree-column path="name.first"></vaadin-grid-tree-column>
 *
 *  <vaadin-grid-column>
 *    ...
 * 
*/ @NpmPackage( name = "@vaadin/vaadin", version = Vaadin.VERSION ) @Import( module = "@vaadin/vaadin-grid/theme/lumo/vaadin-grid-tree-column.js" ) public interface GridTreeColumnElement extends GridColumnElement { static String TAGNAME() { return "vaadin-grid-tree-column"; } /** * JS Path of the property in the item that indicates whether the item has child items. */ @Nullable @JSProperty String getItemHasChildrenPath(); /** * JS Path of the property in the item that indicates whether the item has child items. */ @JSProperty void setItemHasChildrenPath(String itemHasChildrenPath); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy