﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebScheduler - Event when Calendar change date</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Event-when-Calendar-change-date/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Event when Calendar change date</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Event-when-Calendar-change-date/</link><pubDate>Sun, 01 Nov 2009 22:26:58 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>Unfortunately, using the snippet you will have to use Load server side event in order to catch the event in the server side for further processing.</description></item><item><title>Event when Calendar change date</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Event-when-Calendar-change-date/</link><pubDate>Fri, 30 Oct 2009 07:09:56 GMT</pubDate><dc:creator>Sir_Xblack</dc:creator><description>&lt;p&gt;Thanks Glenn,&lt;/p&gt;
&lt;p&gt;It helps me a lot.&lt;/p&gt;
&lt;p&gt;How about the event in server when calendar change? &lt;/p&gt;
&lt;p&gt;Looking to your script, I guess that I can catch event Webscheduler_Load and check if date is changed or not. If there is other easy way to catch calendar change event, pls show me how.&lt;/p&gt;
&lt;p&gt;Thanks &amp; Regards,&lt;/p&gt;
&lt;p&gt;Huy.&lt;/p&gt;</description></item><item><title>Event when Calendar change date</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Event-when-Calendar-change-date/</link><pubDate>Fri, 30 Oct 2009 03:31:11 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;WebScheduler has a javascript function to move to a selected date. Here is the snippet to move to a week from the currently selected date:&lt;/p&gt;&lt;p /&gt;&lt;pre&gt;function MoveSchedulerByCalendar() {
    var sched = ISGetObject("WebScheduler1");
    sched.Calendar.MoveDayBy(7);
    sched.RefreshAll(true);
}
function MoveSchedulerBySelectedDate() {
    var sched = ISGetObject("WebScheduler1");
    
    var currentDate = sched.ViewSettings.SelectedDate;
    currentDate.setDate(currentDate.getDate() &amp;#43; 7);
    sched.RefreshAll(true);
}&lt;/pre&gt;
&lt;p&gt;The first snippet will be applicable if the Calendar object is loaded, if the Calendar is not loaded you could use the second snippet. &lt;/p&gt;
&lt;p&gt;Regarding the lack of documentation for WebScheduler, I will inform this to our documentation team for consideration. &lt;/p&gt;
&lt;p /&gt;</description></item><item><title>Event when Calendar change date</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Event-when-Calendar-change-date/</link><pubDate>Thu, 29 Oct 2009 07:36:30 GMT</pubDate><dc:creator>Sir_Xblack</dc:creator><description>&lt;p&gt;Hi Intersoft,&lt;/p&gt;
&lt;p&gt;How can I catch event on server when user change date in client ? (Event on Server of Webscheduler have nothing related to this action).&lt;/p&gt;
&lt;p&gt;How can I forward to next week by using javascript ? I'm using a custom calendar, user select a date on this calendar and I will call function to let scheduler go to this date, too).&lt;/p&gt;
&lt;p&gt;In Webgrid, "Client side API" have many useful function for developing. But In WebScheduler, I can't find any functions. Does Webscheduler have "Client side API" ?&lt;/p&gt;</description></item></channel></rss>