This is a migrated thread and some comments may be shown as answers.

Radscheduler synchronize with Outlook

15 Answers 565 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
HHalim
Top achievements
Rank 2
HHalim asked on 15 Apr 2008, 04:43 PM
I'm planning to use radscheduler for a project and wondering if anyone has done syncing of radscheduler to Outlook. Is this a possibility?

Thanks!

15 Answers, 1 is accepted

Sort by
0
Paul
Telerik team
answered on 17 Apr 2008, 02:36 PM
Hi Hart,

Unfortunately, this functionality is not supported by the current version of the control. Still, we have that in our ToDo list and we'll try to implement it in some of the next versions of RadScheduler.

All the best,
Paul
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
HHalim
Top achievements
Rank 2
answered on 17 Apr 2008, 05:58 PM
I was not expecting the scheduler to have a built in sync feature, so that's great to hear that it's in the todo list.

Meanwhile, what about import icalendar format to radscheduler? Is this possible to do?  Anyone has done this? Again, I'm not expecting radscheduler to have a built in import feature.

Sorry, for the noob question, I've never used the radscheduler, and I have an important project coming up, so don't want to use something that may not fullfill the requirement.


0
Peter
Telerik team
answered on 18 Apr 2008, 03:57 PM
Hi Hart,

RadScheduler doesn't support importing data from iCalender format as a built-in feature. We still haven't researched how this can be accomplished via a workaround either, but we will definitely consider offering a solution to this scenario one way or the other.



Best wishes,
Peter
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Goran
Top achievements
Rank 1
answered on 20 Aug 2008, 12:42 PM
Hi,

It is great to hear that sync functionality will be available! That is just what I desperately need at the moment. Could You please tell me if this is already implemented or at least  when it can be expected?

Thanks a lot!

Goran
0
Veselin Vasilev
Telerik team
answered on 20 Aug 2008, 03:24 PM
Hello Goran,

Please check this code library: Import iCalendar Data

I hope this helps.

Best wishes,
Veskoni
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Goran
Top achievements
Rank 1
answered on 20 Aug 2008, 03:40 PM
Thanks for Your quick reply!

This example is great when you need import, but what I really need is synchronization between Scheduler and Outlook calendar. That means that every change you do in one of those two calendars affects data in ether one of them in a way that they are synchronized. For i.e.: if you delete or insert or change appointment on a web page trough synchronization the same appointment is deleted or inserted or changed in outlook and vice versa.
(Something like GoogleCalendarSync app.)

Thanks anyway,

Goran
0
T. Tsonev
Telerik team
answered on 21 Aug 2008, 02:24 PM
Hello Goran,

We have introduced an Exchange provider for RadScheduler in the Q2 release this year. It allows you to do just that - synchronize an exchange account with RadScheduler in real time. But you do not mention anything about Exchange, so I am not sure if you use it as a backend. Let me know if you do.

If you are not using Exchange, then I am afraid we cannot do much. In this scenario some kind of offline tool will be required to synchronize your local Outlook calendar with your site.

Regards,
Tsvetomir Tsonev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Goran
Top achievements
Rank 1
answered on 21 Aug 2008, 02:56 PM
Hi Tsvetomir,

First of all, thank You very much for helping me out.

Could You just pass me some links about
Exchange provider for RadScheduler because that is just what we are planning to use to synchronize Outlook and Scheduler.

Thanks,

Goran
0
Peter
Telerik team
answered on 22 Aug 2008, 10:27 AM
Hello Goran,

You can use the Exchange Provider help topic for reference. Also, I am happy to inform you that we have managed to fix a lot of minor issues with RadScheduler.

If you need further assistance, just drop us a line and we will get back to you.


Best wishes,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Pankaj
Top achievements
Rank 1
answered on 15 Feb 2013, 12:45 AM
Dear Telerik Team,

I have used Telerik calender in my application, now i want below functionality on that, is that possible with telerik calender or not as i am using licence version of telerik control. Please reply me ASAP. Points are........

  • I want to be able to sync my Telerik Calendar appointments/events into my Google Calendar
  • I want to be able to sync my Telerik Calendar appointments/events into my Outlook
  • I want to be able to sync my Telerik Calendar appointments/events into my iCal
  • I want to be able to publish/sync my appointments/events from outside calendars into my Telerik Calendar
  • I want the follwing methods to import/sync/publish calendar events outside of BooktUp into a BooktUp calendar:
           1) Google Account Access by Permission (after user Login)
           2) WebDAV
           3) iCal feed subscription
  • I want to be able to sync my Outlook Calendar appointments/events into Telerik Calendar. I want to be able to do this by publishing my events to the  WebDAV server from Outlook or other programs.
  • I want to be able to sync my iCal appointments/events into Telerik Calendar. I want my Telerik Calendar to be able to subscribe to my iCal feed
  • I want to see four import options as text links:
        1) Goolge
        2) Outlook
        3) iCal/iCloud
       4) Other

Clicking on each link will open a different pop-out window containing instructions on how to import events from the selected calendar option
0
HHalim
Top achievements
Rank 2
answered on 15 Feb 2013, 01:45 AM

Holy thread hijack!!!

I completely forgot about this thread from about 4 years ago. What a revival, I'm signing off now, please excuse my trolling.....  ;-)
0
Les
Top achievements
Rank 1
answered on 09 Mar 2013, 03:29 PM
I would be interested in seeing an example on how to connect Radscheduler to the Calander in outlook.com
0
Boyan Dimitrov
Telerik team
answered on 12 Mar 2013, 05:00 PM
Hello,

Thank you for contacting Telerik Support.

I would suggest reviewing our help article that shows a sample implementation of ExchangeProvider that will communicate with the Exchange server and synchronize your RadScheduler control.

I would summarize the required information in the code snippet below in order to work as expected.
//code behind

protected void Page_Load(object sender, EventArgs e)
   {
       this.calendarNames = "your calendar name";
       this.serverUrl = @"https://yourServerURL.com/EWS/Exchange.asmx";
       this.domain = "your domain";
       this.username = "your user name";
       this.password = "your password";
   
       RadScheduler1.Provider = new ExchangeSchedulerProvider(@"https://yourServerURL.com/EWS/Exchange.asmx", "username", "password", "domain", "CalendarName");
   
   }
   protected void RadScheduler1_AppointmentDataBound(object sender, SchedulerEventArgs e)
   {
   }

Please find attached a sample example that follows the aforementioned help article implementation.

Regards,
Boyan Dimitrov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Lalit
Top achievements
Rank 1
answered on 21 Jun 2015, 10:37 PM

Hi,

Does Telerik now have any code samples for syncing radscheduler with outlook and google calendars? It is one of the most required features from clients nowdays and comes prebuilt in most scheduling components.

0
Hristo Valyavicharski
Telerik team
answered on 25 Jun 2015, 11:39 AM
Hi Lalit,

Boyan's reply includes sample for Outlook (ExchangeCalendarSync.zip). Regarding the Google Calendar, we do not have yet a two way sync example. However I'm attaching small sample project, which you can use to retrieve data from any ICalendar include Google Calendar.

Regards,
Hristo Valyavicharski
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Scheduler
Asked by
HHalim
Top achievements
Rank 2
Answers by
Paul
Telerik team
HHalim
Top achievements
Rank 2
Peter
Telerik team
Goran
Top achievements
Rank 1
Veselin Vasilev
Telerik team
T. Tsonev
Telerik team
Pankaj
Top achievements
Rank 1
Les
Top achievements
Rank 1
Boyan Dimitrov
Telerik team
Lalit
Top achievements
Rank 1
Hristo Valyavicharski
Telerik team
Share this question
or