Merge PR #19681: [react-data-grid] Added missing draggable flag to column

* Added missing draggable flag to column
This commit is contained in:
Larry Ruckman
2017-09-13 14:58:56 -07:00
committed by TypeScript Bot
parent a7eaccd5f7
commit acc37d8b9d

View File

@@ -277,6 +277,11 @@ declare namespace AdazzleReactDataGrid {
* A class name to be applied to the cells in the column
*/
cellClass?: string;
/**
* Whether this column can be dragged (re-arranged).
* @default false
*/
draggable?: boolean;
}
interface ColumnEventCallback {