jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
62 lines (55 loc) • 3.34 kB
HTML
<html lang="en">
<head>
<title id="Description">In jqxFormattedInput, decimal numbers can be displayed in exponential
notation. Furthermore, the val method can get the scientific and engineering notations
of the decimal number.</title>
<meta name="description" content="In jqxFormattedInput, decimal numbers can be displayed in exponential notation. Furthermore, the val method can get the scientific and engineering notations of the decimal number." />
<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: "decimal", decimalNotation: "exponential", value: "330000" });
$("#getDecimal, #getExponential, #getScientific, #getEngineering").jqxButton({ width: 175 });
$("#getDecimal").click(function () {
var decimalValue = $("#jqxFormattedInput").jqxFormattedInput("val", "decimal");
alert("Decimal value: " + decimalValue);
});
$("#getExponential").click(function () {
var exponentialValue = $("#jqxFormattedInput").jqxFormattedInput("val", "exponential");
alert("Exponential notation: " + exponentialValue);
});
$("#getScientific").click(function () {
var scientificValue = $("#jqxFormattedInput").jqxFormattedInput("val", "scientific");
alert("Scientific notation: " + scientificValue);
});
$("#getEngineering").click(function () {
var engineeringValue = $("#jqxFormattedInput").jqxFormattedInput("val", "engineering");
alert("Engineering notation: " + engineeringValue);
});
});
</script>
</head>
<body>
<input id="jqxFormattedInput" type="text" />
<div style="margin-top: 20px;">
<button id="getDecimal">
Get decimal value</button>
<button id="getExponential" style="margin-left: 5px;">
Get exponential notation</button><br />
<br />
<button id="getScientific">
Get scientific notation</button>
<button id="getEngineering" style="margin-left: 5px;">
Get engineering notation</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>