fullcalendar

“Object not supported” Javascript error trying to access FullCalendar

人盡茶涼 提交于 2019-11-29 05:37:01
问题 . . I walked in this morning to find out that a calendar, implemented using FullCalendar and a public Google feed, is no longer working. The calendar does not appear, and it gives me a Javascript error. The Javascript error I'm getting is: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; Tablet PC 2.0; .NET4.0C; .NET4.0E) Timestamp: Mon, 13 Aug

How can I override defaults in jQuery Fullcalendar

一个人想着一个人 提交于 2019-11-29 04:22:52
I use Fullcalendar on my site, but I need all text in different language. There is piece of code in that plugin: // function for adding/overriding defaults var setDefaults = fc.setDefaults = function(d) { $.extend(true, defaults, d); }; But I have no ideas how I can use it. Please, I need help. You just override the settings when creating the fullcalendar. Like this: var options = { theme: true, header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay' }, timeFormat: { agenda: 'h(:mm)t{ - h(:mm)t}', '': 'h(:mm)t{-h(:mm)t }' }, monthNames: ["Enero","Febrero","Marzo

fullcalendar'' has no exported member 'Options'.- getting error in Angular

人走茶凉 提交于 2019-11-29 04:01:13
I'm following this ApNg2Fullcalendar installing structure step by step , Im used Angular 5 , but I had following error node_modules/ap-angular2-fullcalendar/src/calendar/calendar.d.ts(3,10): error TS2305: Module ''fullcalendar'' has no exported member 'Options'. node_modules/fullcalendar/dist/fullcalendar.d.ts(695,36): error TS2304: Cannot find name 'JQueryPromise'. node_modules/fullcalendar/dist/fullcalendar.d.ts(696,29): error TS2304: Cannot find name 'JQueryPromise'. node_modules/fullcalendar/dist/fullcalendar.d.ts(697,20): error TS2304: Cannot find name 'JQueryPromise'. node_modules

Trigger jQuery Qtip on FullCalendar dayClick

一笑奈何 提交于 2019-11-29 03:48:25
问题 I have a jquery fullcalendar. I would like to trigger jquery QTip (or other jquery solution (such as a lightbox)) when I click on a day to bring up a list of options. This question is similar to this question already posted, however different enough to warrant a new question. There is an event callback for this but I am unsure how to integrate this with jQuery Qtip... $('#calendar').fullCalendar({ dayClick: function(date, allDay, jsEvent, view) { if (allDay) { alert('Clicked on the entire day

Create fullCalendar calendar event on submitting the form in bootstrap modal window

一个人想着一个人 提交于 2019-11-29 03:37:20
问题 I've a fullCalendar implementation and am trying to create a bootstrap modal window on clicking anywhere on the calendar and then saving the calendar entry on "submitting" the form in the modal window. $(document).ready(function() { var calendar = $('#calendar').fullCalendar({ //header and other values select: function(start, end, allDay) { var endtime = $.fullCalendar.formatDate(end,'h:mm tt'); var starttime = $.fullCalendar.formatDate(start,'ddd, MMM d, h:mm tt'); var mywhen = starttime + '

FullCalendar Within Twitter Bootstrap Tabs

限于喜欢 提交于 2019-11-29 03:04:32
Has anyone managed to get FullCalendar working within Twitter Bootstrap 3 tabs ? I've the following code; <div class="tabbable"> <ul class="nav nav-tabs" id="myTab"> <li class="active"><a id="defaultTab" href="#tab_Default"><h5>Default</h5></a></li> </ul> <div class="tab-content"> <div id="tab_Default" class="tab-pane"> @Html.Partial("_Calendar0") </div> </div> </div> When this code is run I see the tab but no calendar content. If I remove the 'class="tab-content"' from the second div then the tab and calendar displays ok but I'm not getting the tab functionality. There's obviously some

How do I disable drag and drop in fullcalendar

♀尐吖头ヾ 提交于 2019-11-29 02:52:19
I am using FullCalendar throughout my project and i need to display it in one area of my site where events are not draggable but to remain highlighted in the month view. Any ideas please. I know this is an old question, but nobody has answered this correctly, so here you go... $('#example').fullCalendar({ disableDragging: true }); DisableDragging is replaced by: eventStartEditable (since version 1.6.3) http://arshaw.com/fullcalendar/docs/removed/disableDragging/ You just need to set the disableDragging option to true when initializing your calendar. $('#calendar').fullCalendar({

fullCalendar events post method to MySQL

前提是你 提交于 2019-11-29 02:29:46
I am attempting to create a MySQL backed events interface, using fullCalendar and MySQL. I have tried to manipulate the examples in the fullCalendar documentation and have successfully created a events feed from my database. I am now trying to create a eventDrop call which sends an events id, title and start time to the database. I used the code from a previous question to create the eventDrop call, here is the JavaScript for the whole callendar page: $(document).ready(function() { /* initialize the external events -----------------------------------------------------------------*/ $('

Repeat fullcalendar events daily, monthly and yearly

天涯浪子 提交于 2019-11-29 02:29:30
I want to make my events repeat every day, every month and every week. According to fullcalendar documentation events can be repeated weekly using dow parameters while rendering events. So, I also used this as to repeat daily with following code. [[id:7718, type:null, resourceIds:[13], title:Kas, start:2016-08-10T07:00:00.000+05:45, end:2016-08-10T22:00:00.000+05:45, allDay:false, note:dsadsa, member:, dow:[0,1,2,3,4,5,6], ranges:[[start:2016-08-10T07:00:00.000+05:45, end:2021-08-10T07:00:00.000+05:45]], ]] Is there a way to make them repeat every month and every year? Any help would be

jQuery FullCalendar event sorting

一个人想着一个人 提交于 2019-11-29 02:21:12
I have numerous events that are all day events, and all start at the same time. I create the events in the order I would like them to appear on the full calendar view, but they always seem to be sorted some other way. How can I have the events sorted either alphabetically or by their id? EDIT: Adding example Array of data. In the calendar, I expected that the Supervisor event would appear first each day, as alphabetically it is before Tech1 and Tech2, and its id is a lessor number than the following events as well. Instead, I get a random order each day. eg: day of 2011-11-05 the order