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
                
                    - Bind WebScheduler
                        to access database using ISDataSource. 
- 
                The following code snippet will change the time interval to 15 minutes interval.
            
                
                    
                        
                        
                     
                        | 
function SetInterval()
{      
   var s = ISGetObject("WebScheduler1");      
   s.SetTimeInterval("Minutes15");
} |