How to stop validation on datatable when users is done editing cell

In the below example you can see that there’s validation in datable and validate method is only called on ready event but the validate method also gets called when the user is done editing a cell. I want to stop the method from getting called when the is done editing instead I want to call it manually after submitting the form.

https://snippet.webix.com/d6dacfdb

Hello!

As the validation is started on calling the validate() method, you can call it on form submitting:

{
    view:"button", value: "Submit", align:"center", width: 150,
    click:function(){
      var form = this.getParentView();
      if (form.validate()){
        webix.alert("Correct data!")
      }
    }
  }

Please check an example: Code Snippet

I get that part but how can I stop validate method getting called on blur of editing a datatable cell.