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

com.sksamuel.jqm4gwt.form.elements.JQMNumber Maven / Gradle / Ivy

The newest version!
package com.sksamuel.jqm4gwt.form.elements;

/**
 * @author Stephen K Samuel [email protected] 18 May 2011 04:17:45
 *
 *         An implementation of the HTML5 number input type. On systems that do
 *         not support this, it will be degraded into a standard text element.
 *
 *         On most mobile devices this input will result in the soft keyboard
 *         showing the number pad.
 *
 * http://jquerymobile.com/demos/1.0b1/#/demos/1.0b1/docs/forms/forms-text.html
 *
 */
public class JQMNumber extends JQMText {

	public JQMNumber() {
		this(null);
	}

	public JQMNumber(String text) {
		super(text);
		setType("number");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy