@devexpress/dx-core
Advanced tools
Changelog
1.0.0-alpha.7 (2017-08-07)
@devexpress/dx-react-grid-material-ui
package is no longer providedsetPageSize
and setCurrentPage
actions were simpilified. Now, to call these actions, a user can use numbers
instead of objects
. See the following code:
setPageSize(5); // instead of setPageSize({ size: 5 })
and
setCurrentPage(1); // instead of setCurrentPage({ page: 1 })
<a name="1.0.0-alpha.6"></a>
Changelog
1.0.0-alpha.6 (2017-07-24)
allowGrouping
property has been renamed to allowGroupingByClick
.totalPages
getter is no longer exported from the PagingState and LocalPaging plugins.<a name="1.0.0-alpha.5"></a>
Changelog
1.0.0-alpha.5 (2017-07-07)
groupPanelCellTemplate
property of the grouping-panel plugin instead of the GroupPanelProps interface's cellTemplate
property to specify a template used to render a grouping panel cell. The GroupPanelProps interface's cellTemplate
property is no longer available.<a name="1.0.0-alpha.4"></a>
Changelog
1.0.0-alpha.4 (2017-06-23)
react-grid: The following package has become a peer dependency of the @devexpress/dx-react-grid
one and has to be installed by your app:
npm i --save @devexpress/dx-react-core
react-grid: The 'groupRowCellTemplate' property of the TableGroupRow plugin has been renamed to 'groupCellTemplate'
react-grid: We renamed the detailToggleTemplate
property of the TableRowDetail plugin to detailToggleCellTemplate
to make it consistent with the detailToggleCellWidth
property.
react-grid: The groupColumnWidth property of the TableGroupRow plugin has been renamed to groupIndentColumnWidth to avoid possible confusion of what it is responsible for.
<a name="1.0.0-alpha.3"></a>
Changelog
1.0.0-alpha.3 (2017-06-09)
react-grid: We moved layout templates from the TableView plugin to the Grid component. The Grid component with the predefined plugins is now available in the "@devexpress/dx-react-grid-bootstrap3" package. If you want to define custom layout templates, the Grid component without predefined templates is still available in the "devexpress/dx-react-grid" package.
The following code:
import {
Grid
} from '@devexpress/dx-react-grid';
should be replaced with:
import {
Grid
} from '@devexpress/dx-react-grid-bootstrap3';
<a name="1.0.0-alpha.2"></a>
Changelog
1.0.0-alpha.1 (2017-05-15)