最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - jQuery fullCalendar dayClick - convert (date) to mmddyy - Stack Overflow

programmeradmin1浏览0评论

I am trying to the following:

  • user clicks on a specific date
  • fancybox opens with data entry options
  • capture the date on which the calendar was clicked
  • grab that date and inject it into the value of a text input

This is my code:

$("a#inline").fancybox();

$('#calendar').fullCalendar(
{
    dayClick: function (date)
    {
        $('a#inline').click();
        $('.datepicker').val(date);
    }
});

HTML

<a href="#data_entry" id="inline">Add Event</a>

<div style="display:none">
    <div id="data_entry">
        <form action="events/events_save" method="post" name="events_form" id="events_form">
         <input type="text" name="date" value="<?php date('m/d/Y'); ?>" class="datepicker">
        </form>
    </div>
</div>

I am running into the following issues:

  • when clicking on a date on the calendar the fancybox pops up and I get Mon Apr 25 2011 00:00:00 GMT-0400 (EDT) ==> I need this to be mm/dd/yy like 04/25/11

  • if right after that I close the fancybox and click on the anchor tag "Add Event", the fancybox opens but the date is populated with Mon Apr 25 2011 00:00:00 GMT-0400 (EDT) ==> it should actually contain today's date because of the PHP string I put in the value field (this is fixed only if I refresh)

Anyone have suggestions on how to solve either issue?

Thanks a ton.

I am trying to the following:

  • user clicks on a specific date
  • fancybox opens with data entry options
  • capture the date on which the calendar was clicked
  • grab that date and inject it into the value of a text input

This is my code:

$("a#inline").fancybox();

$('#calendar').fullCalendar(
{
    dayClick: function (date)
    {
        $('a#inline').click();
        $('.datepicker').val(date);
    }
});

HTML

<a href="#data_entry" id="inline">Add Event</a>

<div style="display:none">
    <div id="data_entry">
        <form action="events/events_save" method="post" name="events_form" id="events_form">
         <input type="text" name="date" value="<?php date('m/d/Y'); ?>" class="datepicker">
        </form>
    </div>
</div>

I am running into the following issues:

  • when clicking on a date on the calendar the fancybox pops up and I get Mon Apr 25 2011 00:00:00 GMT-0400 (EDT) ==> I need this to be mm/dd/yy like 04/25/11

  • if right after that I close the fancybox and click on the anchor tag "Add Event", the fancybox opens but the date is populated with Mon Apr 25 2011 00:00:00 GMT-0400 (EDT) ==> it should actually contain today's date because of the PHP string I put in the value field (this is fixed only if I refresh)

Anyone have suggestions on how to solve either issue?

Thanks a ton.

Share Improve this question asked May 1, 2011 at 21:18 pepepepe 9,90925 gold badges117 silver badges192 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

To format dates, run the date through fullcalendar's formatDate method. Try:

$('.datepicker').val($.fullCalendar.formatDate( date, "MM/dd/yy"));

Perfect! This helped me out too as I could not find any documentation on how to use formatDate method...

alert($.fullCalendar.formatDate( calEvent.start, "yyyy-MM-dd"));
发布评论

评论列表(0)

  1. 暂无评论