Response title
This is preview!
I use JSON to load Full Calendar and include a description for each event in a custom parameter. I want to use jQuery dialog box on eventClick function but don't know how to specify it. Here is what I'm trying to do:
eventClick: function(calEvent, jsEvent, view) {
$("#cal_event").dialog({
title: calEvent.title,
content: calEvent.description
});
}
eventClick: function(calEvent, jsEvent, view) {
$("#cal_event").dialog({
title: calEvent.title
});
}
Please help. All my attempts have failed.
I either get the description text without the dialog
or the dialog with a title but no text copy.
Seems like this should be simple and common, but I can't find
any info on it.
I did see a plug in called QTip that does exactly what I need,
but I prefer the look of the jQuery themed dialog box.
Best Regards, Dave
© 2013 jQuery Foundation
Sponsored by and others.