Hi Experts,
my requirement is based on date i need to display table records dynamically.. In that case i have create one table view and in .htm i wrote script code to display calender in a filed..
selected date is displaying in that field.. but how can i get that selected value into one variable..
this is the script code i wrote in my .htm..
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
<%-- var head = document.getElementById("datepicker"); --%>
$(function() {
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
});
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
or is there any other procedure to provide calendar as f4 in free style mode..
Thanks in Advance for your help..
Thanks & Regards,
Srinivask