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
1
vote
0 answers

angularjs : ui-calendar, hide saturday and sunday

I am using ui-calendar (https://github.com/angular-ui/ui-calendar), and I would like to hide saturday and sunday. Is it possible? Thank you.
thomas
  • 1,201
  • 2
  • 15
  • 35
1
vote
0 answers

AngularJS UI Calendar - Deleting event won't re render events

I have this problem with the AngularJS Ui-Calendar: Inside the select callback function from fullcalendar, I create the events by dragging and the event is after that added to my events array. After the events are created I want to delete some of…
Simina Alin
  • 133
  • 2
  • 10
1
vote
2 answers

angular 2 fullcalendar,refetchEvents not working(full calendar is not a function error)

I am using angular 2 fullcalendar for one of my projects.everything works fine as long as i have the data ready before rendering the calender.If an event is triggered and data comes from backend,i am facing problem while using refetch function.I wil…
1
vote
1 answer

ui-calendar one event per day

I am using ui-calendar with angularjs in my project for a leave management project.If a user has taken a leave on some day ,i want to restrict him from selecting that date again.ie if a user has taken a leave on 23rd JUNE 2017,and when the user…
Vikhyath Maiya
  • 3,122
  • 3
  • 34
  • 68
1
vote
2 answers

$injector:unpr error when trying to inject ui-calendar to my controller

I am trying to use ui-calendar in my project. The calendar will have different views based on database value in database pages. As I have to call calendar function multiple times I thought I will put the code in a factory service and call it in…
Vikhyath Maiya
  • 3,122
  • 3
  • 34
  • 68
1
vote
1 answer

show Year symbol after year value in Jquery Ui calendar

I am using following code to show the calendar $( "#datepicker" ).datepicker({ numberOfMonths: 2, selectMultiple: true, monthNames: [ "1月","2月","3月","4月","5月","6月", "7月","8月","9月","10月","11月","12月"…
amol challawar
  • 1,394
  • 1
  • 15
  • 31
1
vote
0 answers

AngularUI / FullCalendar - Adding Custom Events

I'm using the AngularUI Calendar / FullCalender and need to insert custom events into an existing array. I've tried it in different ways, but it is not working. I want to insert the custom events into the "events" array and save them in a database…
Codehan25
  • 2,704
  • 10
  • 47
  • 94
1
vote
2 answers

Remove event time from Angular ui-calendar event

Just a question here. I noticed that in my calendar, also the example given in the Ui Calendar page (http://angular-ui.github.io/ui-calendar/), the event block has strange values on it (4p, 8p, 12a), in which after checking out, its actually…
Fred A
  • 1,602
  • 1
  • 24
  • 41
1
vote
1 answer

How to add event dynamically via UI full calendar

I am implementing the UI-calendar in my angular js application. I have successfully added the calendar on the page. But I want to add the event to agendaWeek calendar and save that data into DB. My code implementation is HTML
Manu Chawla
  • 327
  • 1
  • 12
1
vote
0 answers

Angular ui calendar not showing time

In Angular ui calendar showing the date properly but it not showing the time in event scheduler.In browser there is no error on console but time not showing.How can i get time on calendar angular js…
dhamo dharan
  • 712
  • 1
  • 10
  • 25
1
vote
0 answers

How to change Minimum Time and Maximum Time in AngularJS ui.calendar

I am working on a ui.calendar provided by AngularJS. By default the minimum time is 12 AM and maximum time is 11:30. I have made a bit changes to display time for every 30 mins. I want to display the minimum time dynamically according to different…
1
vote
0 answers

angular ui calendar with require and fullCalendar is not a function error

I am adding ui calendar from this lib https://github.com/angular-ui/ui-calendar I have added file on my component file
Er KK Chopra
  • 1,834
  • 8
  • 31
  • 55
1
vote
2 answers

how to refresh angularjs ui-calendar after data fetched from server

below code are sample code of my new application using angularjs.I integrated ui-calendar and done some customization in it.Iam trying to fetch data from server and display in ui-calendar.Data is fetching using angularjs http request but calendar is…
1
vote
1 answer

Modify FullCalendar Event Info (start and end) from ngDialog modal

I am using the ui-calendar directive for arshaw's fullcalendar with draggable external events. I would like to be able to edit the title, start and end through a textbox on a popup dialog without having to drag the event on the calendar itself. I…
yam55
  • 1,541
  • 2
  • 11
  • 12
1
vote
1 answer

selecting a day from UICalendar

I am fairly new to angular I am trying to implement a calendar using ui-calendar. So far I have been able to display a very basic calendar and some events on it. Now I need to be able to click on a day and display the detailed events on a side tab.…