2010-03-12 03:18:34 +00:00
|
|
|
<!DOCTYPE html>
|
2009-03-18 01:51:56 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2010-03-12 03:18:34 +00:00
|
|
|
<meta charset="UTF-8" />
|
2009-03-18 01:51:56 +00:00
|
|
|
<title>Datepicker Visual Test : Datepicker ticket #4240</title>
|
|
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
2010-02-16 01:38:23 +00:00
|
|
|
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
|
2011-03-03 01:44:26 +00:00
|
|
|
<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
2009-12-16 22:20:18 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.datepicker.js"></script>
|
2009-03-18 01:51:56 +00:00
|
|
|
<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>
|