aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/datepicker/datepicker_ticket_4240.html
blob: 82c62af575fbd341612f56d6602e6ec80eb7c7a8 (plain)
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
<!doctype html>
<html lang="en">
<head>
	<title>Datepicker Visual Test : Datepicker ticket #4240</title>
	<link rel="stylesheet" href="../visual.css" type="text/css" />
	<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css">
	<script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.datepicker.js"></script>
	<script type="text/javascript">
	$(function() {
		$("#destroystart").click(function() {
			$("#startdate").datepicker('destroy');
		});
		$("#destroyend").click(function() {
			$("#enddate").datepicker('destroy');
		});
		$("#disablestart").click(function() {
			$("#startdate").datepicker('disable');
		});
		$("#disableend").click(function() {
			$("#enddate").datepicker('disable');
		});
		$("#enablestart").click(function() {
			$("#startdate").datepicker('enable');
		});
		$("#enableend").click(function() {
			$("#enddate").datepicker('enable');
		});
	});
	</script>
</head>
<body>

<h1 class="ui-widget-header"><a href="http://dev.jqueryui.com/ticket/4240">#4240 - Datepicker destroy affects other datepickers</a></h1>

    <input type="text" id="startdate" />
    <input type="text" id="enddate" />
    <br /> <br />
    <input type="button" value="Init Startdate" onclick="$('#startdate').datepicker({showOn: 'both', buttonImage:'calendar.gif', buttonImageOnly:'true'});" />
    <input type="button" value="Init Enddate" onclick="$('#enddate').datepicker({showOn: 'both', buttonImage:'calendar.gif', buttonImageOnly:'true'});" />
    <br /> <br />
    <input type="button" id="destroystart" value="Destroy Startdate" />
    <input type="button" id="destroyend" value="Destroy Enddate" />
    <br /> <br />
    <input type="button" id="enablestart" value="Enable Startdate" />
    <input type="button" id="enableend" value="Enable Enddate" />
    <br /> <br />
    <input type="button" id="disablestart" value="Disable Startdate" />
    <input type="button" id="disableend" value="Disable Enddate" />

</body>
</html>