Hi @blu,
You can try disabling automatic uploads (set the Auto
property to false
) and handle the Change event of the upload. The Change event will fire after the user selects a file. You however need to perform the upload manually by getting a reference to the component and calling its Upload method:
- Create a page property with type
RadzenUpload
and namemyUpload
- Add a custom attribute with name
@ref
and valuemyUpload
- To perform the upload use Execute C# action with Code
myUpload.Upload()