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

com.github.fluorumlabs.disconnect.vaadin.SelectTextField Maven / Gradle / Ivy

The newest version!
package com.github.fluorumlabs.disconnect.vaadin;

import com.github.fluorumlabs.disconnect.core.annotations.WebComponent;
import com.github.fluorumlabs.disconnect.vaadin.elements.SelectTextFieldElement;
import com.github.fluorumlabs.disconnect.zero.component.AbstractComponent;
import com.github.fluorumlabs.disconnect.zero.component.Component;
import com.github.fluorumlabs.disconnect.zero.component.HasComponents;
import com.github.fluorumlabs.disconnect.zero.component.HasStyle;
import js.web.dom.Element;

/**
 * The text-field element.
 *
 * 

Styling

* See * <vaadin-text-field> documentation * for <vaadin-select-text-field> parts and available slots (prefix, suffix etc.) *

* See * ThemableMixin – how to apply styles for shadow parts */ @WebComponent public class SelectTextField extends AbstractComponent implements HasStyle, HasComponents> { public SelectTextField() { super(SelectTextFieldElement.TAGNAME()); } /** * */ public Element focusElement() { return getNode().getFocusElement(); } /** * */ public Element inputElement() { return getNode().getInputElement(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy