Hi Ahmed,
After reviewing your
query, we understand that you want to make the header checkbox visible in the File Manager component. Currently, the checkbox
becomes visible when hovering over the row. To meet your requirement, we
recommend adjusting the “Visibility”
value specifically for the header checkbox using CSS styling.
We have utilized the
FileManager component's “CssClass”
property to implement this through CSS styling.
|
[Index.razor]
<div class="control-section">
@*
Initialization of default File Manager component *@
<SfFileManager TValue="FileManagerDirectoryContent" View="ViewType.Details" CssClass="fileManager">
........
</SfFileManager>
</div>
<style>
.e-filemanager.fileManager .e-grid
.e-gridheader .e-checkbox-wrapper {
visibility: visible;
}
</style>
|
We have also
attached a sample for your reference.
Sample : Attached as zip folder.
Check out the shared
details and get back to us if you need any further assistance.
Regards,
Jafar
Attachment: BlazorFileManager_22fcb158.zip