forked from smontgomerie/Appcelerator-Calendar-Module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
54 lines (37 loc) · 1.49 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
= Appcelerator Calendar Module
===========================================
This is a module that displays an iPhone-like calendar widget, based on the work of Keith Lazuka, dba The Polypeptides .
== Building
--------------
First download the code:
git clone [email protected]:smontgomerie/Appcelerator-Calendar-Module.git
cd Appcelerator-Calendar-Module
Then build the code.
./build.py
Install the calendar into your app.
cp calendarmodule-iphone-xxx.zip ~/Library/Application\ Support/Titanium/
You'll need to at least touch your iPhone app before including it (assuming you're building with Xcode, not Titanium).
== Basic Usage
---------------
To add a view:
var calendarView = Ti.Calendar.createView({
top:0
/*headerColor: "red",
calendarColor: "#aaa8a8"*/
});
calendarView.show();
win.add(calendarView);
When a date is selected, a 'dateSelected' event is thrown:
calendarView.addEventListener('dateSelected', function(e) {
try {
// Do something with the date
} catch(e) {
Ti.API.info(e);
}
});
The component is able to show that there is an event on a certain date with a dot icon. To set which dates are set:
var datesArray = [new Date()];
calendarView.setDates(datesArray);
You can also use the calendar to save a date (and this needs to be refactored):
calendarView.saveEvent(start, end, event.summary, event.location, event.description);
That's pretty much it! Any edits/improvements are appreciated.