Hi
I need to get the object of the input component of file type and not the value.
With the input in HTML this code works.
var fileChooser = document.getElementById('file-chooser');
This returns the file object.
But I want use the Appery input component outside of HTML
I tried this code but it does not work.
var fileChooser = Apperyio("file-chooser");
Thank you