-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
62 lines (49 loc) · 2.24 KB
/
example.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
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI DX Buttons example</title>
<link rel="stylesheet" href="http://people.canonical.com/~jriddell/ubuntu-font.css" type="text/css" />
<link rel="stylesheet" href="jquery.ui.dxbuttons.css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/themes/base/jquery-ui.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery.ui.dxbuttons.js"></script>
<script type="text/javascript" src="jquery.ui.dxbuttons.dropdown.js"></script>
<script>
$(function() {
$('form').dxButtons();
});
</script>
<style>
body {
font-family: Ubuntu;
font-size: 62.5%;
background-color: lightyellow;
}
table {
font-size: 1em;
}
div.datagrid {
width: 100%;
height: 400px;
background-color: lightblue;
}
</style>
</head>
<body>
<form action="?" method="get">
<div class="toolbar" style="margin-top: 15em;">
<input type="submit" name="add" value="Add" data-buttonset="main">
<input type="submit" name="edit" value="Edit" data-buttonset="main" disabled>
<input type="submit" name="delete" value="Delete" data-buttonset="main" disabled>
<input type="submit" name="details" value="Details">
<input type="submit" name="other" data-dropdown="other" value="Other actions">
<input type="submit" name="invoice" value="Invoice" data-dropdown="other" disabled>
<input type="submit" name="bookings" value="Bookings" data-dropdown="other">
<input type="submit" name="products" value="Products" data-dropdown="other">
</div>
</form>
<div class="datagrid"></div>
</body>
</html>