fullcalendar

I can't verticaly align an element to bottom

丶灬走出姿态 提交于 2020-01-07 08:46:39
问题 I'm trying to get my fullcalendar.io event to show up at the bottom of the day instead of in the middle. I've been trying to modify different elements to vertical-align: "bottom" but nothing seems to work. Here is a link to my fiddle that has different css overloaded calls to set the vertical-alignment to bottom for a calendar event. Currently the event is placed in the middle of the day, I want it at the bottom of the cell. $(document).ready(function() { // page is now ready, initialize the

Using FullCalendar with MVC 4 and C#, unable to get the start and end param values

柔情痞子 提交于 2020-01-07 04:50:55
问题 When my FullCalendar ( v 2.3.1 ) attempts to get its event data in my Controller code, start and end parameters object looks like this: start=1425186000 end=1428811200 The documentation states that I should be getting ISO8601 dates as the parameters but obviously I am not. How do I get the FullCalendar to provide ISO8601 dates? What are the numbers that I am actually getting? 回答1: That is the UNIX timestamp, and in your case represents March 1, 2015 ( start ) to April 12, 2015 ( end ). A Unix

jQuery fullcalendar adds weird hr at the end of the calendar when using minTime and maxTime

妖精的绣舞 提交于 2020-01-07 04:24:06
问题 This is what I'm talking about: And this is what I expect: The minimal settings to replicate this are: $('#calendar').fullCalendar({ defaultView: 'agendaWeek', minTime: '10:00', maxTime: '16:00' }); You can play with it in this jsbin. Removing either minTime or maxTime makes the calendar behave as expected. 回答1: After some fiddling, it appears that the default aspect ratio is 1.35 . Because your calendar doesn't meet that ratio, it is adding padding. There are 2 options that I can see that

Highlight fullcalendar events that expands over multiple rows/columns

旧街凉风 提交于 2020-01-07 03:48:07
问题 In my Angular web app I'm using Angular UI Calendar combined with Fullcalendar to show user's events. In this when a user click on an event it gets highlighted, but this has a little downside to it as it is right now, because when an event expands over multiple rows (in month view) or multiple columns (in week view), it's not the hole event that get highlighted - Screenshot 1. Screenshot 1 In the image we have 2. Event that goes from 19. March to 21. March, but as you can see the only part

How to define the number of columns to show on Jquery Full Calendar?

陌路散爱 提交于 2020-01-06 19:53:35
问题 I'm using the week view, but instead of showing 7 columns per slide I want to show three columns, is it possible to archive this? I failed to see any related method on the official documentation: http://fullcalendar.io/docs/ 回答1: Version 2.2.5+ of Full Calendar has this kind of customization built in. You just need to do something like this: views: { agendaThreeDay: { type: 'agenda', duration: { days: 3 }, buttonText: '3 day' }, defaultView: 'agendaThreeDay' } You can get more information on

Full Calendar CSS - displaying events outside the calendar canvas

守給你的承諾、 提交于 2020-01-06 19:36:42
问题 If you take a look at fullCalendar website, we are presented with a calendar. If I attempt to drag the calendar's event, the events are always hidden behind the canvas' edges Is there any way I can modify the CSS, so the events are popped up outside of the canvas? The calendar can be found here: http://arshaw.com/fullcalendar/ Thanks in advance! 回答1: Add this to your CSS file: div.fc-view.fc-view-month.fc-grid { overflow: visible; } 来源: https://stackoverflow.com/questions/12765935/full

Repeat events on selected days in fullcalendar

╄→尐↘猪︶ㄣ 提交于 2020-01-06 12:47:46
问题 How i can create repeating events on selected days, for example in monday and tuesday. My event enter code here array data from json: "title": "Test", "allDay": false, "start": "2014-12-11 9:30:00", "end": "2014-12-11 13:00:00", "repeat": '1,2,3', // first 3 days of week How i can do this? I want show only on calendar repeating, becouse repeating is save i database. I must create repeating events on selected days, i have problem with this. 回答1: You should create your events as different

How to add image to specific events, jquery full calendar

巧了我就是萌 提交于 2020-01-06 10:39:29
问题 I have wp custom post type, and have custom taxonomy, there is one extra field in it which is icon that represents of the taxonomy. So I can query from wpdb and pass all th necessry stuffs to jquery full calendar using json. But cant display image src through feed as currently it doesnt have imgage field. Currrenlt it has title, url, start_date, end_date and few others but it lacks image. My requirement is: each event falls to specific category, and each category has its own image/icon, so

Fullcalendar - Vertical resources, horizontal days [closed]

风格不统一 提交于 2020-01-06 10:23:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 months ago . I would like to know, if there is any way to create a calendar with Fullcalendar in such format: Resource A Resource B Resource C Apr. 26 Apr. 27 Apr. 28 Apr. 29 The timeline view is similar to that, but not exactly what I need. It's very important to have a calendar that could manage events like this. Thank

Fullcalendar - Vertical resources, horizontal days [closed]

心不动则不痛 提交于 2020-01-06 10:22:38
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 months ago . I would like to know, if there is any way to create a calendar with Fullcalendar in such format: Resource A Resource B Resource C Apr. 26 Apr. 27 Apr. 28 Apr. 29 The timeline view is similar to that, but not exactly what I need. It's very important to have a calendar that could manage events like this. Thank