jqwidgets-framework
Version:
jQWidgets is an advanced jQuery, Angular, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
37 lines • 1.7 kB
HTML
<html lang="en">
<head>
<title id='Description'>jqxNumberInput Fluid Size Example. The width of the NumberInput in this demo is in Percentages.</title>
<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="../../scripts/demos.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxnumberinput.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>
<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" />
<meta name="description" content="JavaScript Number Input with Responsive Layout" />
<style>
body, html {
width: 100%;
height: 100%;
overflow: hidden;
padding: 3px;
box-sizing: border-box;
margin: 0;
}
</style>
<script type="text/javascript">
$(document).ready(function () {
// Create jqxNumberInput
$("#numericInput").jqxNumberInput({ width: '50%', height: '35px', spinButtons: true });
});
</script>
</head>
<body class='default'>
<div id='numericInput'>
</div>
</body>
</html>