fullcalendar

Jquery FullCalendar change editable properties of particular event on a calendar

萝らか妹 提交于 2019-12-19 08:12:49
问题 I am currently using jQuery FullCalendar to create a scheduling application. In my application I need to set editable=false only for events which is not an event created by the logged in user; whereas, the event that is created by the logged in user should have editable= true. Can any on suggest me how I could set few editable property of event in a FullCalendar as false and few events as true. 回答1: Set the master editable property to false and set the editable property of the event's that

FullCalendar Change Week View to Vertical List instead of Horizontal Table Columns

久未见 提交于 2019-12-19 04:18:36
问题 Anyway to change the way the Days show in the Week View? I'd rather see a vertical list of the vents by day instead of the horizontal table view of the days. reasoning is it looks pretty bad when on mobile devices and any devices with small width screens... If the only way to do this is through modifying the underlying code, where in the code creates the table content for the Week view? If I figure out where that is, I could probably modify it to display as a list instead of a table... 回答1:

Remove selected event from the Calendar

蹲街弑〆低调 提交于 2019-12-19 04:04:21
问题 I am using JQuery Full Calendar along with Spring MVC. Hello, I have made a demo like that. Target: I need when the user clicks on an event s/he already inserted,a dialog box appears and gives him/her the capability to either remove that event or cancel. Issue: Now whenever the user clicks on any day, a dialog appears to allow the user to enter title for that event then user clicks "Ok" to save that event. Freemarker: Freemarker: <script type="text/javascript"> var resourceVacation; function

jQuery fullCalendar and qTip

冷暖自知 提交于 2019-12-19 03:39:21
问题 I'm looking at using fullCalendar and using qTip to display a description using eventMouseover. Has anyone managed to do this or know of a solution? I've google'd and also tried implementing this post but i've had no joy. The only time I got it to work it got into a loop and crashed my browser. Any advice / support would be greatly appreciated. Von Schmytt. UPDATED: Here's the code i'm starting off with (aware it's an example script but, if I could get qTip integrated I could progress). I

FullCalendar not displaying time from JSON events

帅比萌擦擦* 提交于 2019-12-19 02:49:06
问题 Greetings, Using FullCalendar (http://arshaw.com/fullcalendar/) to pull events from a MySQL database table via JSON. The events are being displayed in the calendar but for some reason it is ignoring the time (hours, minutes, seconds) of the event. Here is the Javascript from the calendar page - <script type='text/javascript'> $(document).ready(function() { $('#calendar').fullCalendar({ editable: false, events: "json-events.php", eventDrop: function(event, delta) { alert(event.title + ' was

Handle dblclick in Fullcalendar jQuery plugin

允我心安 提交于 2019-12-18 19:42:50
问题 I know that this question has been asked before, but several new versions have been released since then. Is it possible to handle a dblclick event for creating a new appointment in the calendar without having to modify the fullcalendar.js file? It would be great to handle this extension in a separate file together with my other tweaks. Thanks in advance! /Adam 回答1: Adam's post at https://code.google.com/p/fullcalendar/issues/detail?id=231 uses this solution. whenever possible i like to keep

How do I properly load the jQuery fullcalendar plugin in a hidden div

岁酱吖の 提交于 2019-12-18 14:13:07
问题 I'm using the jQuery tools tabs to divide my page into tabs. One of those tabs contain a jQuery Fullcalendar. Because I load JavaScript last in the page for speed and to avoid flash of unstyled content, I hide the initially unseen tabs using display:none. When doing this, the fullcalendar doesn't render properly. It shows the proper buttons, but until I press the today-button, no calendar is shown. If I allow it to render into a visible div, it displays properly. I can work around this using

How do I use multiple sources with the jQuery plugin fullCalendar?

倾然丶 夕夏残阳落幕 提交于 2019-12-18 13:28:56
问题 I've got a functional fullCalendar http://arshaw.com/fullcalendar/ working retrieving a single source from Google Calendar for the events like so: $('#calendar').fullCalendar({ events: $.fullCalendar.gcalFeed( "http://www.google.com/calendar/feeds/etc", // feed URL { className: 'gcal-events' } // optional options ) }); My challenge is however to have multiple feeds coming in. The fullCalendar documentation says: eventSources: Array Similar to the 'events' options, except one may specify

rerenderEvents / refetchEvents problem

落花浮王杯 提交于 2019-12-18 13:20:05
问题 I am not sure if I am using this correctly so my problem may be my mis-understanding rather than a bug or larger problem. I have a fullcalendar that gets initiated from doc ready like this (some code left out for brevity). function renderEvents() { var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); var technicians = $("div[ID*='ucTechnicians'] :hidden").val(); var calendar = $('#calendar').fullCalendar({ ... events: "JsonResponse.ashx

FullCalendar: Change agendaDay background-color

此生再无相见时 提交于 2019-12-18 11:56:41
问题 While I have seen this question asked, I haven't seen the answer. I just want to be able to color the background-color of the TD from a certain range.. Say I have my calendar that has slot minutes every 15 minutes and from 9am to 9pm, I would like to only color differently 10am to 3pm. This information would be coming from a feed but that is not an issue. I haven't found the TD s relating to a set time inside the calendar. Perhaps I missed something? :) I am rather new to jQuery and