Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3402894
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T05:11:38+00:00 2026-05-18T05:11:38+00:00

what is the event or method name that i have to call or handle

  • 0

what is the event or method name that i have to call or handle to update an existing event in the calendar(the event i click on). full calendar can be found here http://arshaw.com/fullcalendar/

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T05:11:38+00:00Added an answer on May 18, 2026 at 5:11 am

    When you initialize the FullCalendar instance, bind the eventClick handler:

    var calendar = $('#calendar');
    var curr_event = null;
    calendar.fullCalendar({
        ...
    
        events: [],
        eventClick: function(event, jsEvent, view) {
            curr_event = event;
            show_form_or_something();
        },
    
        ...
    });
    

    You might want to show a form or something in order to allow the user to modify the event properties (title, start etc). Then to update the event back in the FullCalendar instance:

    $.extend(curr_event, {
        title: 'New Event Title',
        start: new Date()
    });
    calendar.fullCalendar('updateEvent', curr_event);
    

    And to address jmeho question:

    When you add the event to FullCalendar either through renderEvent() or event source, you can specify id for each event. After you added the event, you can retrieve the event hash/object by using:

    var event_obj = calendar.fullCalendar('clientEvents', 'specific event id');
    

    Then you can modify the has/object and use the updateEvent() method to update the FullCalendar display.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following XML structure: <method constructor=true name=Main public=true> <parameterList/> <block> <call> <callAttrbute>
I'm looking for a method or an event that would get fired when a
How can bind an event on a WPF Control to a method on my
I've got a method that gets called on an event, which presents me with
When setting the method of a button call or adding an event listener in
I have a function that wraps a call to one of my socket types.
I have a Parent Form that holds a HUD with First Name, Last Name,
I have the following XML code <class name=ContentStreamer> <method name=sendAudio> <criteria>medium</criteria> </method> <method name=sendVideo>
I have an Activity that, for each widget in the layout, I call setOnClickListener()
Here is my question. I have UserControl that wraps group of buttons and it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.