Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes

I am using SfGrid.

I need to display a large amount of data and have set the EnableVirtualization property to true.

As a result, the display of data on the grid has the desired result, but the row copy and row drag-and-drop behavior does not work.


After checking with various patterns, it appears that it does not work when multiple lines that were not initially displayed are selected by mouse dragging and copying is executed.


Example.)

(1) Register 1000 data items in a grid with Height=100 (the first 3 rows are visible)

(2) Execute vertical scrolling and change the displayed rows.

(3) Select multiple lines by dragging the mouse, and execute Ctrl+C, but the contents of the selected lines are not copied.


My Coding

<SfGrid DataSource="@datalist" EnableVirtualization="true" Height="300" AllowRowDragAndDrop="true">

  <GridSelectionSettings Type="SelectionType.Multiple" CellSelectionMode="CellSelectionMode.Box" AllowDragSelection="true" Mode="SelectionMode.Row" />

  <GridColumns>

    <GridColumn Field="id" HeaderText="id"></GridColumn>

    <GridColumn Field="name" HeaderText="name"></GridColumn>

  </GridColumns>

</SfGrid>