Questions tagged [ui-calendar]

A complete AngularJS directive for the Arshaw FullCalendar.

Link to github: https://github.com/angular-ui/ui-calendar

Link to example: http://angular-ui.github.io/ui-calendar/

68 questions
6
votes
3 answers

fullcalendar select callback not firing in mobile

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? …
Gowri
  • 16,587
  • 26
  • 100
  • 160
6
votes
2 answers

fullCalendar today button custom behavior

I have troubles with fullCalendar. I am using week view(defaultView: 'basicWeek'), and the toolbar buttons 'today', 'prev', 'next'. And when I click 'today' button is clicked calendar navigates back to current week, but date selection doesn't…
4
votes
0 answers

Fullcalendar duplicates event using recurring events and switching between agenda weeks

I'm trying to add a new recurring event to my calendar and it is properly created and showed in the current week. The problem occurs when I switch to previous or next week, because it duplicates the events. This is my code: $scope.blocks = { …
gonver
  • 349
  • 1
  • 12
4
votes
0 answers

FullCalendar show UTC as local

I am using ui-calendar (fullcalendar.io) and I want to save the dates to the database as UTC and then display them to the user in the current timezone. $scope.uiConfig: { calendar: { timezone: 'local' } } per here. But it still…
jamesmpw
  • 515
  • 5
  • 16
3
votes
1 answer

Disable event creation on Weekends

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…
Vikhyath Maiya
  • 3,122
  • 3
  • 34
  • 68
3
votes
1 answer

ui-calendar tooltip function not working

calendar to display a calendar and set of events(events being hardcoded as of now).But when i hover on the event the tooltip is not displayed.I searched for many answers online and none worked for me ,Everything else except tooltip is working.Please…
Vikhyath Maiya
  • 3,122
  • 3
  • 34
  • 68
3
votes
1 answer

Use ui-calendar without watches

I am struggling with slow rendering of ui-calendar whenever I change the date range. On an average month, I have up to 300 events. I have read that the Angular watches on the events are what is slowing the rendering down. For the application I'm…
3
votes
0 answers

Change language of Angular ui-calendar

I have an app in AngularJS where I'm using Fullcalendar comnbined Angular ui-calendar with to show the user's events. This works great! In the app, a user can also change between two languages, danish and english. This is where my problem start,…
Backer
  • 1,094
  • 1
  • 20
  • 33
3
votes
1 answer

Custom button for each event in ui-calendar fullcalendar

When you click on each button, it just calls a modal so you can edit or delete an event. I am having trouble passing in the event from the view. This is in the controller: $scope.eventRender = function (event, element, view) { …
2
votes
1 answer

Setting end date of received fullcalendar event fails with error

How can I adjust the end date of a fullcalendar event which is dropped on the calendar? I am using AngularJS's UI Calendar and fullcalendar-scheduler-1.3.2 and I have the following function that handles a newly received event function…
JCvanDamme
  • 621
  • 5
  • 20
2
votes
2 answers

Large amount of events loaded on the angularjs-bootstrap-calendar

I'm pulling in ALL my event data from my server and since I have a lot of events to pull, the angular-bootstrap-calendar takes a lot of time to load. I was wondering if its possible to pull only a month's worth of data for the current view I'm in…
2
votes
3 answers

How to display the events fetched from database on the full calendar angular js directive?

Can anybody help me to resolve following error - source is undefined and $scope.event is undefined , here are my codes - $scope.eventList = function(callback) { service.event_list($scope, function (response) { var events =…
Sachin Vairagi
  • 4,894
  • 4
  • 35
  • 61
1
vote
1 answer

Angularjs - fullcalendar switching between month view and week view not working

I'm using angular js & angular-UI/UI-calendar. I want to load events from the rest API when the view is changed (month, week, etc.) In the next/previous button, on page load, everything works fine.Also works changeView function on view switch but…
1
vote
1 answer

angular ui-calendar calendar.fullCalendar is not a function

I try to put a calendar to my project with angular ui-calendar. Scope works, I can see the message on my page but calendar does not. Here is my code: $scope.uiConfig = { message : "heyyyy", calendar:{ height: 450, editable:…
Aslı
  • 105
  • 1
  • 1
  • 9
1
vote
1 answer

Add seconds to sematic ui calendar

I am using the semantic ui calendar in my emberjs app. Here's a a jsbin of how it looks: semantic ui calendar The only thing missing is the ability to pick seconds. You can pick the hours and minutes, but not the seconds. Can anyone please provide…
nullpointer
  • 490
  • 2
  • 4
  • 20
1
2 3 4 5