onError

fires when assert receives 'false' value, i.e. when assertion fails

boolean onError(string errorMessage);
errorMessagestringa string with an error from the assert method
booleandefines whether the default action of the event will be triggered (true) or canceled (false)

Example

gantt.attachEvent("onError", function(errorMessage){
    gantt.message({
        text:"Error"
    });
    return true;
});

Details

the event is blockable. Returning false will prevent the default behavior (showing error message in a red box in the top right)

Change log

added in version 4.0

Back to top