This question is locked. New answers and comments are not allowed.
I have my grid set to:
SelectionMode = System.Windows.Controls.SelectionMode.Extended;
SelectionUnit = Telerik.Windows.Controls.GridView.GridViewSelectionUnit.Cell;
I want to export the selected cells (SelectedCells). I understand that selected rows can be exported by setting the GridViewExportOptions.Items = grid.SelectedItems. However, setting it to grid.SelectedCells does not work, I get all of the headers and empty data columns. Basically, I want the same data as the clipboard copy when
grid.ClipboardCopyMode = GridViewClipboardCopyMode.Cells;
SelectionMode = System.Windows.Controls.SelectionMode.Extended;
SelectionUnit = Telerik.Windows.Controls.GridView.GridViewSelectionUnit.Cell;
I want to export the selected cells (SelectedCells). I understand that selected rows can be exported by setting the GridViewExportOptions.Items = grid.SelectedItems. However, setting it to grid.SelectedCells does not work, I get all of the headers and empty data columns. Basically, I want the same data as the clipboard copy when
grid.ClipboardCopyMode = GridViewClipboardCopyMode.Cells;
