I have a blazor server script that dynamically generates several TelerikUpload controls to upload documents for different purposes.
All controls use the same OnSelect function to handle the uploaded file.
when a user uploads a file using one of these controls, I need the OnSelect or onUpload function to rename the uploaded file based on which TelerikUpload control was triggered.
How can I reference the ID of the dynamically generated TelerikUpload that triggered the OnSelect or onUpload function so that I can rename the file as needed?
Thank you!