- This sample demonstrates use different formats of date in the Sprigst Calendar
- The first calendar uses "m/d/Y" date format
- The second calendar uses "d/m/Y" date format
- The third calendar uses "Hello m & Y # d all" date format
Current example's settings
...
//Calendar #1
<script language="JavaScript">
<!--
var SC_SET_0 = {
'appearance': SC_APPEARANCE
}
new sCalendar(SC_SET_0);
//-->
</script>
...
...
//Calendar #2
<script language="JavaScript">
<!--
var SC_SET_1 = {
'appearance': SC_APPEARANCE,
'dateFormat' : 'd-m-Y'
}
new sCalendar(SC_SET_1);
//-->
</script>
...
...
//Calendar #3
<script language="JavaScript">
<!--
var SC_SET_2 = {
'appearance': SC_APPEARANCE,
'dateFormat' : 'Hello m & Y # d all'
}
new sCalendar(SC_SET_2);
//-->
</script>
...
