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

com.github.fluorumlabs.disconnect.vaadin.elements.CrudEditColumnElement 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.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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy