jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
44 lines (37 loc) • 1.57 kB
HTML
<html>
<head>
<title id="Description">
This demo shows the default functionality of Formatted Input.
The numeral system of the displayed number can be changed by choosing an option
from the dropdown. TypeScript example.
</title>
<meta name="description" content="Typescript demo which shows the default functionality of Formatted Input widget. The numeral system of the displayed number can be changed by choosing an option from the dropdown." />
<script src="../../../scripts/jquery-1.11.1.min.js"></script>
<script src="../../../jqwidgets/jqxcore.js"></script>
<script src="../../../jqwidgets/jqxdata.js"></script>
<script src="../../../jqwidgets/jqxformattedinput.js"></script>
<script src="typescript-formattedinput.js"></script>
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<script>
$(document).ready(function () {
formatedInput('#jqxFormattedInput');
});
</script>
</head>
<body>
<div class="example-description">
This demo shows the default functionality of Formatted Input.
The numeral system of the displayed number can be changed by choosing an option
from the dropdown. TypeScript example.
</div>
<div id="jqxFormattedInput">
<input type="text" />
<div>
</div>
<div>
</div>
</div>
</body>
</html>