onChange

fires when the value is changed inside the editor

void onChange();

Example

webix.ui({
    view: "editor",
    on: {
        onChange() {
            console.log(this.getValue());
        },
    },
});

Back to top