Skip to content

Commit

Permalink
chore: add note about enableExcelCopyBuffer grid option interface
Browse files Browse the repository at this point in the history
- while trying to text enableExcelCopyBuffer feature, I had problem finding a grid that would work, the problem is that it cannot be used with plugins that uses mouse dragging and cell styling, so it would be better to add a note about that in the GridOption interface
  • Loading branch information
ghiscoding committed Dec 6, 2022
1 parent f1cadb3 commit c032f09
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/common/src/interfaces/gridOption.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,10 @@ export interface GridOption {
/** Defaults to false, do we want to enable the Draggable Grouping Plugin? */
enableDraggableGrouping?: boolean;

/** Defaults to true, which leads to use an Excel like copy buffer that gets copied in clipboard and can be pasted back in Excel or any other app */
/**
* Defaults to true, which leads to use an Excel like copy buffer that gets copied in clipboard and can be pasted back in Excel or any other app.
* NOTE: please note that this option will NOT work when "Row Selection" & "Row Move" are enabled, because features are conflicting with each other.
*/
enableExcelCopyBuffer?: boolean;

/**
Expand Down

0 comments on commit c032f09

Please sign in to comment.