4

我可以在我的日历中设置一个事件。我的代码是

var ev = new tizen.CalendarEvent
    ({
        description : document.getElementById('des').value,
        summary : document.getElementById('summ').value,
        startDate : new tizen.TZDate(yy, mm, dd, h, m),
        duration : new tizen.TimeDuration(dur1, "HOURS"),
        location : document.getElementById('loc').value,
    });

我怎么能为此设置一个 calendarAlarm 事件?即我想为事件启用警报。如果有人知道,请提供代码。

提前致谢。

4

2 回答 2

5

终于我得到了答案

calendar = tizen.calendar.getDefaultCalendar("EVENT");
var ev = new tizen.CalendarEvent({
description : document.getElementById('description1').value,
summary : document.getElementById('Summary1').value,
startDate : new tizen.TZDate(yy, mm, dd, h, m),
duration : new tizen.TimeDuration(dur1, "HOURS"),
location : document.getElementById('Location1').value,
var alarm = new tizen.CalendarAlarm(new tizen.TimeDuration(1, "MINS"), "SOUND");
ev.alarms = [alarm]; 
calendar.add(ev);
于 2012-08-02T08:47:12.260 回答
0

我在Tizen 手机上测试的这段代码,它可以工作:

    var mycalendar;
    try{        
        mycalendar = tizen.calendar.getDefaultCalendar("EVENT");
        var calendarItem = new tizen.CalendarEvent();

        calendarItem.description = "Description";
        calendarItem.summary = "Summary";
        calendarItem.location = "StackOverflow";
        calendarItem.startDate = new tizen.TZDate(2012, 8, 7, hour, minute);
        calendarItem.duration = new tizen.TimeDuration(duration, "MINS");

        mycalendar.add(calendarItem);

    }
    catch(add_exception){
        alert("Exceptie adauga : " + add_exception.message);
    }   

在您的回答中,代码有错误,您没有关闭CalendarEvent({括号和括号,并且行尾有一个逗号location

于 2012-09-07T10:43:54.550 回答