I need to access the file object and upload file using aws s3 sdk

Hi Webix Team,

I am new to webix and trying to evaluate the product for my user case. I am trying to use it to upload file to aws s3. I am using aws s3 javascript sdk to upload the file which uses file object. To get the file object I am using onFileUpoad event and handle upload using aws sdk.

But the problem is that, It automatically triggers “uploader” send method which require post url and throws an exception “You need to define upload url for uploader component”.

Is it possible to override the send method or completely skip it and only use onFileUpload event to upload the file. Or, some other way to achieve this use case.

Thank you,
Ranjeet

https://docs.webix.com/api__ui.uploader_autosend_config.html
https://docs.webix.com/api__ui.uploader_onafterfileadd_event.html
set autosend:false in uploader config and use onAfterFileAdd event to implement own logic.