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

com.vaadin.client.ui.VTextField Maven / Gradle / Ivy

Go to download

Vaadin is a web application framework for Rich Internet Applications (RIA). Vaadin enables easy development and maintenance of fast and secure rich web applications with a stunning look and feel and a wide browser support. It features a server-side architecture with the majority of the logic running on the server. Ajax technology is used at the browser-side to ensure a rich and interactive user experience.

The newest version!
/*
 * Copyright (C) 2000-2024 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */

package com.vaadin.client.ui;

import com.google.gwt.dom.client.Element;
import com.google.gwt.event.dom.client.BlurEvent;
import com.google.gwt.event.dom.client.BlurHandler;
import com.google.gwt.event.dom.client.FocusEvent;
import com.google.gwt.event.dom.client.FocusHandler;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.ui.TextBoxBase;

/**
 * This class represents a basic text input field with one row.
 *
 * @author Vaadin Ltd.
 *
 */
public class VTextField extends TextBoxBase
        implements Field, FocusHandler, BlurHandler, AbstractTextFieldWidget {

    /** Default classname for this widget. */
    public static final String CLASSNAME = "v-textfield";
    /**
     * Classname suffix for this widget when focused.
     *
     * @see #addStyleDependentName(String)
     */
    public static final String CLASSNAME_FOCUS = "focus";

    /**
     * Constructs a widget for a TextField.
     */
    public VTextField() {
        this(DOM.createInputText());
    }

    /**
     * Constructs a text entry widget that wraps the given input element.
     *
     * @param node
     *            the input element to wrap
     */
    protected VTextField(Element node) {
        super(node);
        setStyleName(CLASSNAME);
        addFocusHandler(this);
        addBlurHandler(this);
    }

    /**
     * Sets the {@code maxLength} Integer property for this widget's base
     * element. If the given value is negative, the property is removed.
     *
     * @param maxLength
     *            the new maximum length
     */
    public void setMaxLength(int maxLength) {
        if (maxLength >= 0) {
            getElement().setPropertyInt("maxLength", maxLength);
        } else {
            getElement().removeAttribute("maxLength");
        }
    }

    /**
     * Sets the {@code placeholder} String property for this widget's base
     * element. If the given value is {@code null}, the property is removed.
     *
     * @param placeholder
     *            the new placeholder text
     */
    public void setPlaceholder(String placeholder) {
        if (placeholder != null) {
            getElement().setAttribute("placeholder", placeholder);
        } else {
            getElement().removeAttribute("placeholder");
        }
    }

    @Override
    public void onBlur(BlurEvent event) {
        removeStyleDependentName(CLASSNAME_FOCUS);
    }

    @Override
    public void onFocus(FocusEvent event) {
        addStyleDependentName(CLASSNAME_FOCUS);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy