view media/js/gcalendar.js @ 77:d5eed0a91a05

#24 - Make the default date for a birthday today - 30 years. This allows you to select any month with the picker if the field is initially blank.
author Brian Neal <bgneal@gmail.com>
date Fri, 10 Jul 2009 23:56:02 +0000
parents c0d3b09c9b95
children 5b69d6e01fd4
line wrap: on
line source
$(document).ready(function() {
    $('#id_description').markItUp(mySettings);
    $('#id_start_date').datepicker({constrainInput: true, 
       onClose: function () {
         var end = $('#id_end_date');
         if (this.value > end.val())
         {
            end.val(this.value);
         }
       }
       });
    $('#id_end_date').datepicker({constrainInput: true,
       onClose: function () {
         var start = $('#id_start_date');
         if (this.value < start.val())
         {
            start.val(this.value);
         }
       }
       });
    if ($('#id_all_day:checked').length)
    {
       $('#id_start_time').hide();
       $('#id_end_time').hide();
       $('#id_tz_stuff').hide();
    }
    $('#id_all_day').click(function () {
       $('#id_start_time').toggle();
       $('#id_end_time').toggle();
       $('#id_tz_stuff').toggle();
       });
});