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

com.googlecode.wicket.jquery.ui.form.spinner.timespinner.js Maven / Gradle / Ivy

The newest version!
jQuery.widget("ui.timespinner", jQuery.ui.spinner, {
	options : {
		// seconds
		step : 60 * 1000,
		// hours
		page : 60
	},

	_parse : function(value) {
		if (typeof value === "string") {
			if (Number(value) == value) {
				// already a timestamp
				return Number(value);
			}

			return +Globalize.parseDate(value, ['t'], this.options.culture);
		}

		return value;
	},

	_format : function(value) {
		return Globalize.format(new Date(value), "t", this.options.culture);
	}
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy