Hi, I've set up an angular calendar, it's a news programmer where people record what time they would be available or not at what time.
How can I show the date in the calendar in "1 mar 2017 12:00" format?
I know that with ng-repeat...
I have the variable fecha that when doing print shows per console: 2016-11-20 23:00:00 +0000
The problem is that when you do this:
let auxCalendar = calendar.dateComponents([.weekday, .day, .weekdayOrdinal, .month], fro...
I'm trying to make a massive load of events in a calendar ios either locally or in gmail (The calendar is chosen by the user in the manner I describe in the following answer ) using objective-c .
Adding an event with the functions I hav...
I'm creating a calendar and I do not want to allow you to select past dates, in the js I'm placing the following:
<script>
$('.datepicker-default').datetimepicker({
language:'es',
daysOfWeekDisabled: [0, 6],
todayHig...
I have the following code:
Calendar.getInstance().getTime();
With that I get the current date, but I want to know if there is any way that the time is 00:00:00 instead of when that method was called.
I want to make a function that from three values in int (day month year) returns me that day of the week is, googling I have reached this function but I get an error, it does not hit with the day it is.
This is the code:
String diaSemana...
I am showing in a calendar the events that I have in my DB but I do not know how to pass a date parameter.
Calendar calendar1 = Calendar.getInstance();
calendar1.add(calendar.DAY_OF_YEAR, 3);//Aqui esta la posicion, (dia en el que...
As you can see in my screenshot, I have a problem with the second week. The days that appear are the same as those of the previous week.
In app / views / calendar / index.html.erb:
<%= week_calendar number_of_weeks: 2 do |date| %&g...
Greetings
I am making an application in which I have to manage a calendar with events that repeat themselves, but I am having problems when generating the events that repeat on the 31st of each month, since there are months that do not have 3...
I'm trying to create a calendar in the Google account, I've managed to create calendars but none of them are synchronized with the Google account and I do not know what I'm doing wrong.
I think I know where the problem is but I can not solve...