Hello, webix team
(1) How to use webix.ajax().post with my parameter to upload attachment, if I don’t use the customized editor? Because the default attachment property cannot add my parameter.
(2) To avoid calling twice api, I use the following function. When I set the statement to reject the promise, it cannot call the api with move task action in the same status. So, it is not suitable for moving the task and content editing. How to solve the problem?
if(update["webix_move_parent"]) { // avoid calling twice api
return webix.promise.defer().reject();
} else {
return webix.ajax().post("/SaveTasks",
update,
function(response) {
}
);
}
(3) How to set the config(color/user/tag) before the kanban rendering?
https://snippet.webix.com/2jcqxm4f
Thank you.