JavaScript Formatted Input

Set the decimalNotation property of the jqxFormattedInput. Author: http://jqwidgets.com

by Hristo Hristov

HTML

<script src="http://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<div id="jqxFormattedInput">
    <input type="text" />
    <div></div>
</div>

JavaScript

$("#jqxFormattedInput").jqxFormattedInput({
    theme: "energyblue",
    width: 250,
    height: 25,
    radix: "decimal",
    decimalNotation: "default",
    value: "253000",
    spinButtons: true
});