Hi Friends
I am working with a Full Calender application, in that,while i click in a event it must be redirect to another page and also post the data like event id,event start,event end,user id so on,how can i do that in J Query and Full Calender
views:
95answers:
2
+1
A:
When you wire up your fullcalendar you need to use the eventClick event.
$(your_calendar_selector).fullCalendar({
eventClick: eventClick,
});
Then you define a handler like:
function eventClick(event) {}
From in that function you can do something as simple as setting the window.location.href to another page, passing the values you need on the querystring, or do a POST to the new page serializing up the event data required.
Boycs
2010-10-18 23:38:38
i need to redirect it to new page,while clicking on a event,it must be redirect.
Alex Mathew
2010-10-18 23:40:56
+3
A:
I think you can do something like this :
$('#calendar').fullCalendar({
eventClick: function(calEvent, jsEvent, view) {
window.location = 'page.php?'
+ 'id=' + calEvent.id
+ '&start=' + calEvent.start
+ '&end=' + calEvent.end
+ '&user_id=' + calEvent.user_id;
}
});
You can use this method to POST your data :
function post_to_url(path, params, method) {
method = method || "post"; // Set method to post by default, if not specified.
// The rest of this code assumes you are not using a library.
// It can be made less wordy if you use one.
var form = document.createElement("form");
form.setAttribute("method", method);
form.setAttribute("action", path);
for(var key in params) {
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", key);
hiddenField.setAttribute("value", params[key]);
form.appendChild(hiddenField);
}
document.body.appendChild(form); // Not entirely sure if this is necessary
form.submit();
}
Took it from here.
An example how to use it :
$('#calendar').fullCalendar({
eventClick: function(calEvent, jsEvent, view) {
var method = 'POST';
var path = 'page.php';
var params = new Array();
params['event_id'] = calEvent.id;
params['event_start'] = calEvent.start;
params['event_end'] = calEvent.end;
params['event_user_id'] = calEvent.user_id;
post_to_url(path, params, method);
}
});
elblanco
2010-10-18 23:41:20
Yes, you can create a form using JQuery or javascript and submit it with form.submit().
elblanco
2010-10-18 23:46:56