New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnClientNavigationCommand

The OnClientNavigationCommand occurs when the user changes the selected view of the Gantt.

The event handler receives two parameters:

  1. The instance of the Gantt control firing the event.

  2. An eventArgs parameter containing the following methods:

    • set_cancel lets you cancel the event and prevent the view switching.

    • get_view returns the name of the selected view.

<telerik:RadGantt RenderMode="Lightweight" runat="server" id="RadGantt1" OnClientNavigationCommand="OnClientNavigationCommand">
</telerik:RadGantt>
function OnClientNavigationCommand(sender, eventArgs) {
    args.set_cancel(true);
}

See Also

In this article