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

com.databasesandlife.util.wicket.TelTextField Maven / Gradle / Ivy

package com.databasesandlife.util.wicket;

import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.model.IModel;

/**
 * <input type="tel"> field.
 * 
 * @author This source is copyright Adrian Smith and licensed under the LGPL 3.
 * @see Project on GitHub
 */
@SuppressWarnings("serial")
public class TelTextField extends TextField {

    public TelTextField(String id, IModel model) {
        super(id, model);
    }

    @Override
    protected String getInputType()
    {
        return "tel";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy