jquery-ui/tests/visual/compound/datepicker_dialog.html

32 lines
854 B
HTML
Raw Normal View History

2012-05-08 18:40:45 +00:00
<!doctype html>
<html lang="en">
<head>
2012-05-08 18:40:45 +00:00
<meta charset="utf-8">
2009-07-18 18:35:30 +00:00
<title>Compound Visual Test : Datepicker in Dialog</title>
2012-05-08 18:40:45 +00:00
<link rel="stylesheet" href="../visual.css">
<link rel="stylesheet" href="../../../themes/base/all.css">
<script src="../../../jquery-1.10.2.js"></script>
<script src="../../../ui/core.js"></script>
<script src="../../../ui/widget.js"></script>
<script src="../../../ui/mouse.js"></script>
<script src="../../../ui/position.js"></script>
<script src="../../../ui/resizable.js"></script>
<script src="../../../ui/draggable.js"></script>
<script src="../../../ui/datepicker.js"></script>
<script src="../../../ui/dialog.js"></script>
2012-05-08 18:40:45 +00:00
<script>
$(function() {
2012-05-08 18:40:45 +00:00
$( "#datepicker" ).datepicker();
$( "#dialog" ).dialog();
});
</script>
</head>
<body>
<div id="dialog">
<input id="datepicker">
</div>
</body>
</html>