Why I am unable to import events?
If you are having issues importing on your server, make sure the ‘includes’ folder is writable.
Why I am unable to import events?
If you are having issues importing on your server, make sure the ‘includes’ folder is writable.
How do I see the week view or the day view when calendar loads instead of month view?
By default the jquery option
defaultViewis set to month e.g:
defaultView: 'month'For:
defaultView: 'basicWeek'or
defaultView: 'agendaWeek'
defaultView: 'basicDay'
How do I use the 12H format?
By default the calendar is set to 24H format, if you need to change this options use the jquery option:
timeFormatFor
timeFormat: 'h:mm'
timeFormat: 'h(:mm)t'
Currently these settings only work for Week and Day View.
How do I add custom fields?
To add custom fields to the calendar, use this builder that will generate the code to construct the fields, or you can manually edit the form.json file using this structure:
{ "dataType": "dataType", "class": "class", "fields" : { "fieldLabel": "fieldInstruction", } }
To build fieldInstructions according to the dataType you need to follow this instruction:
<name> For HTML name tag
~placeholder~ For HTML placeholder tag
values{a,b,c} For HTML option values tag
labels(A, B, C) For HTML option tag
*tablename* For a table name on the same database
#name# For the column of the table
+file+ For the HTML input file. Only one input file and the system handles the upload process itself.
And you can build the instruction set as this:
pullFrom-tableName-*customersTable*-fields-#customerName#-name-<customers_name>
pullFrom-options-name-<reads>-values{book,ebook,article}-labels(Book, eBook, Article)
*You might have a look at the generated or existing configuration so you can have a see how its done.
How to I make Monday as first day of the week?
To use Monday as first day of the week, you have the ‘firstDay’ option, where you can set it to value 1 for Monday and 0 for Sunday.
E.g:
'firstDay': 1
How do I change the order of the week days?
To change the order of the week day you have the ‘firstDay’ option, where you can set it to values from 0 – 6, depending when you want the week to start.
E.g:
If you want the order: Mon, Tue, Wed, Thu, Fri, Sat, Sun set a value of 1;
If you want the order: Tue, Wed, Thu, Fri, Sat, Sun, Mon set a value of 2;
This author provides limited support for this item through email contact form.
View the item support policy