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?
…
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…
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 = {
…
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…
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…
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…
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…
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,…
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) {
…
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…
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…
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 =…
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…
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:…
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…