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

ASPxClientCardViewCallbackCommand Class

Declares client constants that contain the names of the CardView’s default commands executed through callbacks.

Declaration

declare class ASPxClientCardViewCallbackCommand

Remarks

function OnCustomCommand(s, e) {
    switch(e.command) {
        case "command1":
            // your code
            break;
        case "command2":
            // your code
            break;
    }
}

Online Demo

See Also