Skip to main content
A newer version of this page is available. .

ASPxClientScheduler Class

Represents the client-side equivalent of the ASPxScheduler control.

Declaration

declare class ASPxClientScheduler extends ASPxClientControl

Remarks

To run a custom JavaScript code after the ASPxScheduler on the page is fully initialized, use the ASPxClientGlobalEvents.ControlsInitialized event of the ASPxGlobalEvents component. This component exposes a set of server and client events, allowing you to centralize common logic for all DevExpress web controls on the form. The following markup sample illustrates the use of the ControlsInitialized event:


<dxge:ASPxGlobalEvents ID="ASPxGlobalEvents1" runat="server">
            <ClientSideEvents ControlsInitialized="function(s,e) { DoSomeAction(); }" />
</dxge:ASPxGlobalEvents>
See Also