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

ASPxClientGanttCustomCommandEventArgs Class

Provides data for the CustomCommand event.

Declaration

declare class ASPxClientGanttCustomCommandEventArgs extends ASPxClientEventArgs

Remarks

<dx:ASPxGantt ID="Gantt" ClientInstanceName="clientGantt" >
    <SettingsToolbar>
        <Items>
            <dx:GanttCustomToolbarItem Checked="True" Text="Show Resources" CommandName="Toggle" />
        </Items>
    </SettingsToolbar>
    <ClientSideEvents CustomCommand="function(s, e) {
        if(e.commandName == 'Toggle') {
            gantt.ShowResources(e.parameter);
        }
    } />
</dx:ASPxGantt>

Examples

Online Demo

Gantt - Toolbar

Inheritance

ASPxClientEventArgs
ASPxClientGanttCustomCommandEventArgs
See Also