ui-calendar

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

AngularJS UI-calendar not refreshing events on Calendar (Manually refresh the calendar(F5))

放肆的年华 提交于 2019-12-23 04:30:07
问题 I'm new to programming so I followed this tutorial http://www.mitechdev.com/2016/07/crud-operations-on-angular-ui-calendar.html, but it doesn't refresh the data after submitting the form. The new/modified/deleted data it's displayed after I refresh the page. I also tried ".fullCalendar( 'refetchEvents' )" but with no effect. Basically what I want to do is when I submit the form (closing the modal) the data to be displayed in the calendar. Thank you in advance. Update - my script here: <script

fullcalendar select callback not firing in mobile

谁说胖子不能爱 提交于 2019-12-13 13:35:37
问题 I am using fullcalendar version 2.9.1. I am rendering calendar as agendaWeek . When I click on specific time slot from desktop, it's firing the select callback, but when I click on the mobile device it's not. What is the problem? selectable:true, select: function(start, end, jsEvent, view) { // event is firing this callback } I am using this in angular application using ui.calendar 回答1: I think you need to tap and hold in order to select dates/slots in mobile devices... https://fullcalendar

Disable event creation on Weekends

别说谁变了你拦得住时间么 提交于 2019-12-12 05:29:34
问题 I am trying to use Fullcalendar for one of my leave application. I have select option enabled so that the user can select dates and apply leave on it. But I want to disable weekends from getting selected, ie it should give a alert when the user clicks on the weekends. Is it achivable? My code this.calendarOptions = { height:450, defaultDate: moment(new Date(),'YYYY-MM-DD'), editable: false, stick:true, selectable:true, eventLimit: false, // allow "more" link when too many events events: this