<script>
var
event =
new
kendo.data.SchedulerEvent({
id: 1,
start:
new
Date(
"2013/9/2 12:00"
),
end:
new
Date(
"2013/9/2 12:30"
),
title:
"Lunch"
,
recurrenceRule:
"FREQ=MONTHLY;COUNT=2;BYMONTHDAY=15"
});
</script>
How can I determine the last date of this recurring event?
-Martin