jQuery datepicker tutorial
657747Dec 23 2009 — edited Dec 23 2009I am going through the tutorial (http://www.oracleapplicationexpress.com/tutorials/65-jquery-datepicker) and I can't seem to get it to work.
I created a brand new page in APEX with the region source as :
<script>
$(document).ready(function(){
$(".datepicker").datepicker({
showOn: "both",
buttonImage: "/i/asfdcldr.gif",
buttonImageOnly: true,
dateFormat: 'dd/mm/yy'
});
});
</script>
just like the tutorial said to do. I loaded up the jQuery .js files and .css files that the example said to do.
I created one item on the page and set the class="datepicker" but I get a javascript error and no calendar image appears next to the page item like in the example.
I get an object expected javascript error which is not very helpful.
Any help or example pages would be great.
Thanks