FullCalendar with pop ups

Discussion in 'jQuery' started by RaschNuts, Aug 4, 2012.

  1. #1
    I am fairly new to jQuery and javascript but I am moving in the right direction. I have tried to google and searched on here but I am having a hard time figuring out how to accomplish a pop up with event information and how to enter the information I want displayed.

    I would like to have it look like this http://yabdab.com/plugins/dateloom/demo/

    Any help and suggestions are greatly appreciated.
     
    RaschNuts, Aug 4, 2012 IP
  2. Zinosi

    Zinosi Well-Known Member

    Messages:
    75
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    118
    #2
    You need to use the Jquery UI dialog which opens up on click of the event.

    $(".fc-event-inner").click( function() {
    $('#dialog').dialog('open');
    return false;
    });

    Should work like that i think
     
    Zinosi, Aug 7, 2012 IP
  3. MikeSmithDev

    MikeSmithDev Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Here is how to do fullcalendar popup like in your example:

    http://mikesmithdev.com/blog/jquery-full-calendar-with-ui-modal-dialog/
     
    MikeSmithDev, Oct 30, 2012 IP