Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Table column reordering is not working with Virtual Table #154

Closed
kvet opened this issue Jun 19, 2017 · 1 comment · Fixed by #424
Closed

Table column reordering is not working with Virtual Table #154

kvet opened this issue Jun 19, 2017 · 1 comment · Fixed by #424
Labels
bug Grid The DevExtreme Reactive Grid component

Comments

@kvet
Copy link
Contributor

kvet commented Jun 19, 2017

Currently, it's impossible to drop a dragged column on a Virtual Table. It does nothing.

@kvet kvet added the bug label Jun 19, 2017
gsobolev added a commit that referenced this issue Nov 2, 2017
fixes #154 

BREAKING CHANGES:

- The `ColumnOrderState` plugin has been renamed to `TableColumnReordering` and is now available via the `@devexpress/dx-react-grid-bootstrap3` and `@devexpress/dx-react-grid-material-ui` packages.
- The `TableView` plugin's `allowColumnReordering` property has been removed and the `TableColumnReordering` plugin now depends on the `TableView` plugin. Thus, it is enough to link the `TableColumnReordering` plugin below the `TableView` plugin to enable column reordering.

Before:
```jsx
import {
  // ...
  ColumnOrderState
} from '@devexpress/dx-react-grid';

// ...

<ColumnOrderState defaultOrder={[/* ... */]} />
<TableView allowColumnReordering />
```

After:
```jsx
import {
  // ...
  TableColumnReordering
} from '@devexpress/dx-react-grid-bootstrap3';
// } from '@devexpress/dx-react-grid-material-ui';

// ...

<TableView />
<TableColumnReordering defaultOrder={[/* ... */]} />
```
@dxrobot dxrobot added the Grid The DevExtreme Reactive Grid component label May 2, 2019
@lock
Copy link

lock bot commented Jun 15, 2019

This thread has been automatically locked since it is closed and there has not been any recent activity. Please open a new issue for related bugs or feature requests.

@lock lock bot locked as resolved and limited conversation to collaborators Jun 15, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Grid The DevExtreme Reactive Grid component
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants