June 2016
Intermediate to advanced
910 pages
18h 59m
English
Let's take a look at the following code:
new_entry: function() {
var result = {};
result.hours = 12;
result.minutes = 0;
result.month = new Date().getMonth();
result.date = new Date().getDate();
result.year = new Date().getFullYear();
result.weekday = new Date().getDay();
result.description = '';
return result;
},For one-time calendar entries, the fields are used just as you might expect. For series of calendar entries, the date becomes not the time when the calendar entry occurs, but the time when it starts. The user interface offers several ways that you might narrow down when a calendar entry occurs. This can be said to be every first, Tuesday only, and for a particular month. Every selection that ...
Read now
Unlock full access