|
<style>
/*Style to remove the permission field in Details popup*/
#filemanager tr:last-child {
display: none;
}
</style> |
|
public void send(Syncfusion.Blazor.FileManager.BeforeSendEventArgs args)
{
// Conform whether the popup is details popup.
if (args.Action == "details")
{
isDetail = true;
}
}
public void beforePopupOpen(BeforePopupOpenCloseEventArgs args)
{
if (isDetail)
{
// Cancel our default popup.
args.Cancel = true;
// You can show your own customized popup here.
}
} |