Open SerreauFrederic opened 3 years ago
Hi, I use your component and It's very good.
But I had an a issue with MudBlazor component, only on Chrome.
On classic page, all it's ok, but in MudDialog, the DragZone component doesn't work.
If you want you can try this :
<MudDialog> <DialogContent> <Dropzone ... /> </DialogContent> </MudDialog>
In demo solution, I solved by adding tabindex="1" on <div draggable > in DropZone.razor file
<div draggable >
In my solution, I solved like that :
<MudDialog> <DialogContent> <DropZone > <div tabindex="1"> <MyDraggableComponent /> </div> </DropZone> </DialogContent> </MudDialog>
Thanks.
Hi, I use your component and It's very good.
But I had an a issue with MudBlazor component, only on Chrome.
On classic page, all it's ok, but in MudDialog, the DragZone component doesn't work.
If you want you can try this :
In demo solution, I solved by adding tabindex="1" on
<div draggable >
in DropZone.razor fileIn my solution, I solved like that :
Thanks.