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

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

/**
 * <vaadin-crud-edit> is a helper element for <vaadin-grid-column> that provides
 * an easily themable button that fires an edit event with the row item as detail
 * when clicked.
 * 

* Typical usage is in a <vaadin-grid-column> of a custom <vaadin-grid> inside * a <vaadin-crud> to enable editing. */ @NpmPackage( name = "@vaadin/vaadin", version = Vaadin.VERSION ) @Import( module = "@vaadin/vaadin-crud/theme/lumo/vaadin-crud-edit-column.js" ) public interface CrudEditElement extends HTMLElement { static String TAGNAME() { return "vaadin-crud-edit"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy