I’m trying to implement a custom back-end and the standard getMeta function is not working for me so I have to overwrite it in the child class. My getMeta function looks like so:
getMeta(obj) {
return new webix.promise((resolve, reject) => {
resolve({ ImageWidth: 0, ImageHeight: 0 });
});
}
Also, here is a code snippet with similar code:
https://snippet.webix.com/o4antwp7
Do I need to include more than just ImageWidth and ImageHeight in the meta object? Or am I not making the promise right? Or is there something else that I am not doing correctly?