once

allows to call code only once

void once(function code);
codefunctioncode to execute

Example

datatable.attachEvent("onItemClick", webix.once(function(id){
    webix.message(id); //Will be shown only for the first click;
}));

Back to top