-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_calculate.html
executable file
·50 lines (36 loc) · 1.05 KB
/
example_calculate.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="jsf.js"></script>
<script>
$(document).ready(function() {
$("form").jsf({
selectInput: function(elt) { return elt.parent() }
});
});
function isInt(val) {
return !isNaN(parseInt(val));
}
</script>
<link href="example.css" rel="stylesheet">
</head>
<body>
<h1>Calculate total incl. tax</h1>
<form>
<input type="text" name="amount"
jsf:required="true"
jsf:constraint="isInt(amount)"
placeholder="Amount"
/>
<input type="text" name="tax"
jsf:required="true"
jsf:constraint="isInt(amount)"
placeholder="Tax percentage"
/>
Total: <input type="text" name="total"
jsf:readonly="true"
jsf:calculate="(amount && tax) ? (amount + ((amount / 100) * tax)) : 0"
/>
</form>
</body>
</html>