Intersoft Support Center

Set Time Interval in Client-side

Time interval can be configured using client-side API. The method is called SetTimeInterval.

This topic will show you how to set Time Interval in client-side.

To set Time Interval in client-side

  1. Bind WebScheduler to access database using ISDataSource.
  2. The following code snippet will change the time interval to 15 minutes interval.

    JavaScript Copy Code
    function SetInterval()
    {      
       var s = ISGetObject("WebScheduler1");      
       s.SetTimeInterval("Minutes15");
    }
Previous Next