mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
#4240 - Added visual test page
This commit is contained in:
parent
392efc34b3
commit
020ed12837
BIN
tests/visual/datepicker/calendar.gif
Normal file
BIN
tests/visual/datepicker/calendar.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 127 B |
53
tests/visual/datepicker/datepicker_ticket_4240.html
Normal file
53
tests/visual/datepicker/datepicker_ticket_4240.html
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
<!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/ui.core.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../ui/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>
|
Loading…
Reference in New Issue
Block a user