UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

31 lines (30 loc) 1.66 kB
<!DOCTYPE html> <html lang="en"> <head> <title id="Description">jqxFormattedInput can also display negative numbers in the four supported numeral systems. Negative binary, octal and hexadecimal numbers are represented as 64-bit numbers using the two's complement method.</title> <meta name="description" content="jqxFormattedInput can also display negative numbers in the four supported numeral systems. Negative binary, octal and hexadecimal numbers are represented as 64-bit numbers using the two's complement method." /> <link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" /> <script type="text/javascript" src="../../../scripts/jquery-1.12.4.min.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxformattedinput.js"></script> <script type="text/javascript" src="../../../scripts/demos.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#jqxFormattedInput").jqxFormattedInput({ width: 600, height: 25, radix: "binary", value: "1111111111111111111111111111111111111111111111111111111111110110", spinButtons: true, dropDown: true }); }); </script> </head> <body> <div id="jqxFormattedInput"> <input type="text" /> <div> </div> <div> </div> </div> </body> </html>