com.github.fluorumlabs.disconnect.vaadin.elements.GridProEditSelectElement 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 org.teavm.jso.JSByRef;
import org.teavm.jso.JSProperty;
import javax.annotation.Nullable;
/**
* The cell editor select element.
*
* Styling
* See
* <vaadin-select>
documentation
* for <vaadin-grid-pro-edit-select>
parts.
*
* See
* ThemableMixin – how to apply styles for shadow parts
*/
@NpmPackage(
name = "@vaadin/vaadin",
version = Vaadin.VERSION
)
@Import(
module = "@vaadin/vaadin-grid-pro/theme/lumo/vaadin-grid-pro-edit-select.js"
)
public interface GridProEditSelectElement extends SelectElement {
static String TAGNAME() {
return "vaadin-grid-pro-edit-select";
}
@Nullable
@JSProperty
String[] getOptions();
@JSProperty
void setOptions(String... options);
}