Hiding upload button but show clear button for SfUploader

Similar to the linked post, I want to use my form submit button to upload the files but I want to show the clear button while hiding the upload button of the SfUploader. The CSS code to hide the action buttons in the linked post also does not seem to work anymore.

https://www.syncfusion.com/forums/157428/upload-files-only-on-valid-editform-submit-and-hide-clear-upload-buttons


1 Reply 1 reply marked as answer

PM Ponmani Murugaiyan Syncfusion Team February 16, 2022 09:13 AM UTC

Hi Nick, 

We suggest you to override the below styles to hide only the upload button as per your requirement. 


<style> 
/*    To hide clear button*/ 
    .e-file-upload-btn.e-css.e-btn.e-flat.e-primary { 
        display: none; 
    } 
</style> 

 

Regards, 
Ponmani M 


Marked as answer
Loader.
Up arrow icon