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
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.