We have a blazor component that has a SfGrid instance and some other controls and code etc. lets call it myplanner.razor
<SfGrid @ref="mygrid" >
...
</SfGrid>
then in another component we use 2 instances of that component
<div class="row">
<div class="col-6">
<myplanner />
</div>
<div class="col-6">
<myplanner />
</div>
</div>
Question is how can we set the drag and drop target in the SfGrid so we can drag and drop between the 2 grids in these components?
thanks for any jhelp
Mik