[Signup Now!]
ScheduleWorld
If you want to be guaranteed a response then do not use these forums - email support@ScheduleWorld.com instead.
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
SyncML script for website  XML
Forum Index -> Feature Requests
Author Message
dagstjerna

Seeker of Wisdom

Joined: 14/11/2008 15:42:44
Messages: 4
Offline

I developing a website whit a calendar and todo events.
my goal is to sync this data whit my mobile phone.
(today I sync my SonyEricsson P1i whit SheduleWorld and my outlook.)

how can I send events and calendar to SheduleWorld whit JavaScript or PHP, from my website?


Best Regards
MarkSwanson

Source of Wisdom
[Avatar]

Joined: 30/09/2006 14:28:58
Messages: 6419
Offline

Responded via email.
Posting here in case anyone else finds this page.

I am scheduled shortly to work on providing an embeddable version of the calendar. This would allow folks to receive notification of calendar changes through a simple JavaScript callback mechanism. Folks would have access to the simple data model (property/value).

For some types of projects this would let a developer spend most of its time working on adding value on top of the calendar.

This is all part of the new sw2:
http://www.ScheduleWorld.com/sw2/
[WWW]
dagstjerna

Seeker of Wisdom

Joined: 14/11/2008 15:42:44
Messages: 4
Offline

To create and add a new event you would simply do JavaScript like this:
Code:
  var syncSWorld = new SyncSWorld();
  var event = {};
  event.title = "some summary";
  event.startYear = 2008;
  event.startMonth = 11;
  event.startDayOfMonth = 10;
  event.startIsDate = true; // all-day
  event.dirty = true;
  event.brandNew = true;
  syncSWorld.addEvent(event)
  syncSWorld.eventSync();
 


Is this solution ready for testing yet?
Best regards.
MarkSwanson

Source of Wisdom
[Avatar]

Joined: 30/09/2006 14:28:58
Messages: 6419
Offline

It's taken a bit longer. Two major features are ahead of this. They are both to be completed first week of feb. Please ping then.
[WWW]
dagstjerna

Seeker of Wisdom

Joined: 14/11/2008 15:42:44
Messages: 4
Offline

First of all, Great work...
And now to the javascript object? how is it going?
dagstjerna

Seeker of Wisdom

Joined: 14/11/2008 15:42:44
Messages: 4
Offline

No news about the JavaScript-API?
 
Forum Index -> Feature Requests
Go to:   
Powered by JForum 2.1.6 © JForum Team