jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
54 lines (47 loc) • 2.66 kB
HTML
<html lang="en">
<head>
<title id="Description">This demo shows a jqxFormattedInput initialized from an HTML
input.</title>
<meta name="description" content="This demo shows a jqxFormattedInput initialized from an HTML input." />
<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/jqxbuttons.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: 250, height: 25, radix: "binary", value: "100001" });
$("#getOctal, #getDecimal, #getHexadecimal").jqxButton({ width: 175 });
$("#getOctal").click(function () {
var octalValue = $("#jqxFormattedInput").jqxFormattedInput("val", "octal");
alert("Octal value: " + octalValue);
});
$("#getDecimal").click(function () {
var decimalValue = $("#jqxFormattedInput").jqxFormattedInput("val", "decimal");
alert("Decimal value: " + decimalValue);
});
$("#getHexadecimal").click(function () {
var hexadecimalValue = $("#jqxFormattedInput").jqxFormattedInput("val", "hexadecimal");
alert("Hexadecimal value: " + hexadecimalValue);
});
});
</script>
</head>
<body>
<input id="jqxFormattedInput" type="text" />
<div style="margin-top: 20px;">
<button id="getOctal">
Get octal value</button>
<button id="getDecimal" style="margin-left: 5px;">
Get decimal value</button>
<button id="getHexadecimal" style="margin-left: 5px;">
Get hexadecimal value</button></div>
<div style="position: absolute; bottom: 5px; right: 5px;">
<a href="https://www.jqwidgets.com/" alt="https://www.jqwidgets.com/"><img alt="https://www.jqwidgets.com/" title="https://www.jqwidgets.com/" src="https://www.jqwidgets.com/wp-content/design/i/logo-jqwidgets.png"/></a>
</div>
</body>
</html>