com.github.fluorumlabs.disconnect.vaadin.elements.GridTreeColumnElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-vaadin Show documentation
Show all versions of disconnect-vaadin Show documentation
Vaadin components bindings for Disconnect Zero
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);
}