| Name | Type | Default | 
                
                    | disabled | Boolean | false | 
                
                    | 
                            
                                Enables or disables the jqxFormattedInput.
                             Code examples
                                Set the disabledproperty. $('#jqxFormattedInput').jqxFormattedInput({ disabled: false });
 
                                Get the disabledproperty. var disabled = $('#jqxFormattedInput').jqxFormattedInput('disabled');
 | 
                
                    | decimalNotation | String | "default" | 
                
                    | 
                            
                                Sets or gets the notation in which to display decimal numbers.
                             Possible values
                                'default' - the default representation of decimal numbers, e.g. 1590;
                             
                                'exponential' - representation of decimal numbers in scientific exponential notation
                            (E notation), e.g. 1.59e+3.
                             Code example
                                Set the decimalNotationproperty. $("#jqxFormattedInput").jqxFormattedInput({ decimalNotation: 'exponential' });
 
                                Get the decimalNotationproperty. var radix = $('#jqxFormattedInput').jqxFormattedInput('decimalNotation');
                        
 | 
                
                    | dropDown | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the jqxFormattedInput's dropdown (pop-up) will be enabled.
                            The dropdown allows the user to choose the radix (numeral system) of the displayed
                            number.
                             
                                Note: the dropdown requires an additional empty divelement
                            in the initializationdivof jqxFormattedInput. Code examples
                                Set the dropDownproperty. $('#jqxFormattedInput').jqxFormattedInput({ dropDown: true });
 
                                Get the dropDownproperty. var dropDownWidth = $('#jqxFormattedInput').jqxFormattedInput('dropDown');
 | 
                
                    | dropDownWidth | Number/String | null | 
                
                    | 
                            
                                Sets or gets the width of the jqxFormattedInput's dropdown (pop-up).
                             Code examples
                                Set the dropDownWidthproperty. $('#jqxFormattedInput').jqxFormattedInput({ dropDownWidth: 200 });
 
                                Get the dropDownWidthproperty. var dropDownWidth = $('#jqxFormattedInput').jqxFormattedInput('dropDownWidth');
 | 
                
                    | height | Number/String | null | 
                
                    | 
                            
                                Sets or gets the jqxFormattedInput's height.
                             Code examples
                                Set the heightproperty. $('#jqxFormattedInput').jqxFormattedInput({ height: "35px" });
 
                                Get the heightproperty. var height = $('#jqxFormattedInput').jqxFormattedInput('height');
 | 
                
                    | min | String | '-9223372036854775808' | 
                
                    | 
                            
                                Sets or gets the minimum value of the widget. The value of min should be in the
                            same numeral system as value. The min property can be set to no less
                            than '-9223372036854775808' (-2⁶³) in decimal. Code example
                                Set the minproperty. $("#jqxFormattedInput").jqxFormattedInput({ min: 'cc' });
 
                                Get the minproperty. var min = $('#jqxFormattedInput').jqxFormattedInput('min');
 | 
                
                    | max | String | '9223372036854775807' | 
                
                    | 
                            
                                Sets or gets the maximum value of the widget. The value of max should be in the
                            same numeral system as value. The max property can be set to no more
                            than '9223372036854775807' (2⁶³ - 1) in decimal. Code example
                                Set the maxproperty. $("#jqxFormattedInput").jqxFormattedInput({ max: "1001" });
 
                                Get the maxproperty. var max = $("#jqxFormattedInput").jqxFormattedInput('max');
 | 
                
                    | placeHolder | String | '' | 
                
                    | 
                            
                                Sets or gets the jqxFormattedInput's placeholder.
                             Code example
                                Set the placeHolderproperty. $("#jqxFormattedInput").jqxFormattedInput({ placeHolder: "Enter a number" });
 
                                Get the placeHolderproperty. var placeHolder = $('#jqxFormattedInput').jqxFormattedInput('placeHolder');
                        
 | 
                
                    | popupZIndex | Number | 20000 | 
                
                    | 
                            
                                Sets or gets the pop-up's z-index.
                             Code example
                                Set the popupZIndexproperty. $("#jqxFormattedInput").jqxFormattedInput({ popupZIndex: 999999 });
 
                                Get the popupZIndexproperty. var zIndex = $('#jqxFormattedInput').jqxFormattedInput('popupZIndex');
 | 
                
                    | roundedCorners | boolean | true | 
                
                    | 
                            
                                Enables or disables the rounded corners functionality. This property setting has
                            effect in browsers which support CSS border-radius.
                             Code example
                                Set the roundedCornersproperty. $("#jqxFormattedInput").jqxFormattedInput({ roundedCorners: false });
 
                                Get the roundedCornersproperty. var roundedCorners = $("#jqxFormattedInput").jqxFormattedInput('roundedCorners');
 | 
                
                    | rtl | Boolean | false | 
                
                    | 
                            
                                Sets or gets a value indicating whether widget's elements are aligned to support
                            locales using right-to-left fonts.
                             Code example
                                Set the rtlproperty. $('#jqxFormattedInput').jqxFormattedInput({ rtl : true });
 
                                Get the rtlproperty. var rtl = $('#jqxFormattedInput').jqxFormattedInput('rtl');
 | 
                
                    | radix | Number/String | 10 | 
                
                    | 
                            
                                Sets or gets the radix of the jqxFormattedInput. The radix specifies the numeral
                            system in which to display the widget's value.
                             Possible values
                                2 or 'binary' - specifies the binary numeral system. Allowed characters for this
                            numeral system are the digits 0 and 1;
                             
                                8 or 'octal' - specifies the octal numeral system. Allowed characters for this numeral
                            system are the digits from 0 to 7;
                             
                                10 or 'decimal' - specifies the decimal numeral system. Allowed characters for this
                            numeral system are the digits from 0 to 9;
                             
                                16 or 'hexadecimal' - specifies the hexadecimal numeral system. Allowed characters
                            for this numeral system are the digits from 0 to 9 and letters
                            from a to f (case insenstive).
                             Code example
                                Set the radixproperty. $("#jqxFormattedInput").jqxFormattedInput({ radix: 'hexadecimal' });
 
                                Get the radixproperty. var radix = $('#jqxFormattedInput').jqxFormattedInput('radix'); 
 | 
                
                    | spinButtons | Boolean | true | 
                
                    | 
                            
                                Shows or hides the spin buttons.
                             
                                Note: the spin buttons require an additional empty divelement
                            in the initializationdivof jqxFormattedInput. Code examples
                                Set the spinButtonsproperty. $('#jqxFormattedInput').jqxFormattedInput({ spinButtons: false });
 
                                Get the spinButtonsproperty. var spinButtons = $('#jqxFormattedInput').jqxFormattedInput('spinButtons');
 | 
                
                    | spinButtonsStep | Number | 1 | 
                
                    | 
                            
                                Sets or gets the increase/decrease step. The value of spinButtonsStepis a decimal number. Code examples
                                Set the spinButtonsStepproperty. $('#jqxFormattedInput').jqxFormattedInput({ spinButtonsStep: 200 });
 
                                Get the spinButtonsStepproperty. var spinButtonsStep = $('#jqxFormattedInput').jqxFormattedInput('spinButtonsStep');
 | 
	     	
				| template | String | 'default' | 
			
				| 
						
							Determines the template as an alternative of the default styles.
						Possible Values: 'default' - the default template. The style depends only on the "theme" property value.
 'primary' - dark blue style for extra visual weight.
 'success' - green style for successful or positive action.
 'warning' - orange style which indicates caution.
 'danger' - red style which indicates a dangerous or negative action.
 'info' - blue button, not tied to a semantic action or use.
 Code examples
							Set the templateproperty. $("#jqxFormattedInput").jqxFormattedInput({ template: 'primary'});
 
							Get the templateproperty. var template = $('#jqxFormattedInput').jqxFormattedInput('template');
 | 
                
                    | theme | String | '' | 
                
                    | 
                            
                                Sets the widget's theme.
                             
                            jQWidgets uses a pair of css files - jqx.base.css and jqx.[theme name].css. The
                        base stylesheet creates the styles related to the widget's layout like margin, padding,
                        border-width, position. The second css file applies the widget's colors and backgrounds.
                        The jqx.base.css should be included before the second CSS file. In order to set
                        a theme, you need to do the following:
                         | 
                
                    | upperCase | boolean | false | 
                
                    | 
                            
                                Sets or gets whether to use upper case when the radixproperty is set
                            to 16 or 'hexadecimal'. Code example
                                Set the upperCaseproperty. $("#jqxFormattedInput").jqxFormattedInput({ upperCase: true });
 
                                Get the upperCaseproperty. var upperCase = $("#jqxFormattedInput").jqxFormattedInput('upperCase');
 | 
                
                    | value | String | '0' | 
                
                    | 
                            
                                Sets or gets the value of the jqxFormattedInput widget. The value is in the numeral
                            system specified by the radixproperty. Code example
                                Set the valueproperty. $("#jqxFormattedInput").jqxFormattedInput({ value: '112' });
 
                                Get the valueproperty. var value = $('#jqxFormattedInput').jqxFormattedInput('value');
 | 
                
                    | width | Number/String | null | 
                
                    | 
                            
                                Sets or gets the jqxFormattedInput's width.
                             Code examples
                                Set the widthproperty. $('#jqxFormattedInput').jqxFormattedInput({ width: 200 });
 
                                Get the widthproperty. var width = $('#jqxFormattedInput').jqxFormattedInput('width');
 | 
                
                    |  | 
                
                    | change | Event |  | 
                
                    | 
                            
                                This event is triggered when the value is changed.
                             Code examples
                                Bind to the changeevent by type: jqxFormattedInput. $("#jqxFormattedInput").on("change", function (event) {
    // event arguments
    var args = event.args;
    // new value
    var value = args.value;
    // old value
    var oldValue = args.oldValue;
    // radix
    var radix = args.radix;
    // type
    var type = args.type; // keyboard, mouse or null depending on how the value was changed.                       
});
 | 
                
                    | close | Event |  | 
                
                    | 
                            
                                This event is triggered when the pop-up is closed.
                             Code examples
                                Bind to the closeevent by type: jqxFormattedInput. $('#jqxFormattedInput').on('close', function(){ // type your code here. });
                        
 | 
                
                    | open | Event |  | 
                
                    | 
                            
                                This event is triggered when the pop-up is opened.
                             Code examples
                                Bind to the openevent by type: jqxFormattedInput. $('#jqxFormattedInput').on('open', function(){ // type your code here. });
                        
 | 
                
                    | radixChange | Event |  | 
                
                    | 
                            
                                This event is triggered when the radix is changed.
                             Code examples
                                Bind to the radixChangeevent by type: jqxFormattedInput. $("#jqxFormattedInput").on("radixChange", function (event) {
    // event arguments
    var args = event.args;
    // new radix
    var radix = args.radix;
    // old radix
    var oldRadix = args.oldRadix;
    // new value
    var value = args.value;
    // old value
    var oldValue = args.oldValue;
});
 | 
                
                    |  | 
                
                    | close | Method |  | 
                
                    | 
                            
                                Closes the jqxFormattedInput pop-up.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the closemethod. $('#jqxFormattedInput').jqxFormattedInput('close'); 
 | 
                
                    | destroy | Method |  | 
                
                    | 
                            
                                Destroys the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the destroymethod. $('#jqxFormattedInput').jqxFormattedInput('destroy'); 
 | 
                
                    | focus | Method |  | 
                
                    | 
                            
                                Focuses the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the focusmethod. $('#jqxFormattedInput').jqxFormattedInput('focus'); 
 | 
                
                    | open | Method |  | 
                
                    | 
                            
                                Opens the jqxFormattedInput pop-up.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the openmethod. $('#jqxFormattedInput').jqxFormattedInput('open'); 
 | 
                
                    | render | Method |  | 
                
                    | 
                            
                                Renders the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the rendermethod. $('#jqxFormattedInput').jqxFormattedInput('render');
 | 
                
                    | refresh | Method |  | 
                
                    | 
                            
                                Refreshes the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the refreshmethod. $('#jqxFormattedInput').jqxFormattedInput('refresh'); 
 | 
                
                    | selectAll | Method |  | 
                
                    | 
                            
                                Selects the text in the input field.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the selectAllmethod. $('#jqxFormattedInput').jqxFormattedInput('selectAll'); 
 | 
                
                    | selectFirst | Method |  | 
                
                    | 
                            
                                Positions the caret in the beginning of the number in the input.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the selectFirstmethod. $('#jqxFormattedInput').jqxFormattedInput('selectFirst'); 
 | 
                
                    | selectLast | Method |  | 
                
                    | 
                            
                                Positions the caret at the end of the number in the input.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the selectLastmethod. $('#jqxFormattedInput').jqxFormattedInput('selectLast'); 
 | 
                
                    | val | Method |  | 
                
                    | 
                            
                                Sets or gets the value.
                             
                                
                                    
                                        Return Value 
                                String
                                            | Parameter | Type | Description |  
                                            | value | String/Number | (if 'binary', 'octal', 'decimal' or 'hexadecimal' is passed)
or decimal notation (if 'exponential', 'scientific' or 'engineering' is passed).
If no parameter is passed, returns the displayed value of the jqxFormattedInput |  Code examples
                                Get the value: // @param format (optional) - if passed, returns the value in the specified numeral system
(if 'binary', 'octal', 'decimal' or 'hexadecimal' is passed)
or decimal notation (if 'exponential', 'scientific' or 'engineering' is passed).
If no parameter is passed, returns the displayed value of the jqxFormattedInput;
var value = $('#jqxFormattedInput').jqxFormattedInput('val', 'binary');
or
var value = $('#jqxFormattedInput').val();
 
                                Set the value: $('#jqxFormattedInput').jqxFormattedInput('val', 700);
or
$('#jqxFormattedInput').val(700);
 |