com.github.fluorumlabs.disconnect.vaadin.elements.CrudEditColumnElement 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.web.dom.HTMLElement;
import org.teavm.jso.JSProperty;
import javax.annotation.Nullable;
/**
* <vaadin-crud-edit-column>
is a helper element for the <vaadin-grid>
* that provides a clickable and themable edit icon.
*
* Typical usage is in a custom <vaadin-grid>
inside a <vaadin-crud>
.
*
*
Example:
* <vaadin-grid items="[[items]]">
* <vaadin-crud-edit-column></vaadin-crud-edit-column>
*
* <vaadin-grid-column>
* ...
*
*/
@NpmPackage(
name = "@vaadin/vaadin",
version = Vaadin.VERSION
)
@Import(
module = "@vaadin/vaadin-crud/theme/lumo/vaadin-crud-edit-column.js"
)
public interface CrudEditColumnElement extends HTMLElement {
static String TAGNAME() {
return "vaadin-crud-edit-column";
}
/**
* The arial-label for the edit button
*/
@Nullable
@JSProperty
String getAriaLabel();
/**
* The arial-label for the edit button
*/
@JSProperty
void setAriaLabel(String ariaLabel);
}