Hello,
I would like some pointers what to use in solution for having upload multiple files.
The template should have
- checkbox
- file name
- file id (hidden)
- FileUpload control
The control will build list of template (items) and when form is posted, it should post all singular (selected) files.
Which control should be used to achieve something like that - ListBox (ListView) or DataGrid?
p.s. in vue3 when itemTemplate property is used for listBox (as v-slot in your examples, your code breaks on finding the "slot" template in list.base class, on compile(template) as this function uses document.query (for template search) - which can not satisfy how vue3 works) - but when itemTemplate is defined as string it compiles fine...