Upload 2 images into path on server, pass them into function and result to client side

Hi,
i’ve made this code on webix snippet:

https://snippet.webix.com/6de4z2kq

And i would understand how can i must the uploaders upload into specified path by me two images and when i click button execute image registration call function passing these 2 images… i must retrieve the paths of uploaded images…
I’m very newbie for using webix.
Thanks
Cris

Nobody here… this world is full of ghosts :slight_smile:

if you want to get the path on the clientside, then it is not possible.

if you need to get the path from the server, try to listen to onUploadComplete or onFileUpload event and get it from the response.
you will have to pass the saved file path in the response.
https://docs.webix.com/api__ui.uploader_onuploadcomplete_event.html
https://docs.webix.com/api__ui.uploader_onfileupload_event.html

Hi,
thanks for your answer. Ok. THanks!!!