|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Announcements
Chapters
Services
Feature Zones
|
IntroductionEver had a form where you wanted the user to fill-in a date, a valid date? Tried and looked for something to help you out? EasyCalendar is for you! Using the codePlain simple: put the EasyCalendar files (except for demo.html - included in the project zip) in your Web/HTML directory, and make very modifications to your original HTML file (it can be ASP, ASP.NET, PHP whatever...) as demonstrated in the demo.html. The Javascript code will be like: <script language="javascript">
var activeElement = false;
function setDate( elementName ) {
activeElement = document.forms[0].elements[ elementName ];
var w = window.open("DateSelector.html", "DateSelector",
"width=280,height=280,resizable=no,scrollbars=no,
menu=no,location=no,status=no");
w.focus();
}
function GetDateSelectorDate() { return activeElement.value; }
function SetDateSelectorDate( dateString )
{ activeElement.value = dateString; }
</script>
And supposing you have an Enjoy! ConclusionI have fun making tools in JavaScript and I admire the power of DHTML.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||