ods-component-lib 1.17.169 → 1.17.170
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1350,7 +1350,6 @@ function grid(props, dataGridRef) {
|
|
|
1350
1350
|
onEditCanceling: props.onEditCanceling,
|
|
1351
1351
|
onExporting: onExporting,
|
|
1352
1352
|
filterSyncEnabled: true,
|
|
1353
|
-
scrolling: {},
|
|
1354
1353
|
height: props.height == undefined ? window.innerHeight - 164 : props.height,
|
|
1355
1354
|
repaintChangesOnly: true,
|
|
1356
1355
|
remoteOperations: false,
|
|
@@ -1508,7 +1507,7 @@ function grid(props, dataGridRef) {
|
|
|
1508
1507
|
})), React__default.createElement(dataGrid.Summary, null, React__default.createElement(dataGrid.TotalItem, {
|
|
1509
1508
|
column: props.totalColumunName == undefined ? "Id" : props.totalColumunName,
|
|
1510
1509
|
summaryType: "count",
|
|
1511
|
-
displayFormat: props.TotaDatalLanguage + " : " + (props.TotalDataCount == undefined ? "{0}" : props.TotalDataCount)
|
|
1510
|
+
displayFormat: props.TotaDatalLanguage + " : " + (props.TotalDataCount == undefined ? "{0}" : props.TotalDataCount + " / " + props.TotalPagesize)
|
|
1512
1511
|
})))));
|
|
1513
1512
|
}
|
|
1514
1513
|
|