ods-component-lib 1.17.169 → 1.17.171
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 +5 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1350,7 +1350,9 @@ function grid(props, dataGridRef) {
|
|
|
1350
1350
|
onEditCanceling: props.onEditCanceling,
|
|
1351
1351
|
onExporting: onExporting,
|
|
1352
1352
|
filterSyncEnabled: true,
|
|
1353
|
-
scrolling: {
|
|
1353
|
+
scrolling: {
|
|
1354
|
+
useNative: props.scrolUseNative == undefined ? false : props.scrolUseNative
|
|
1355
|
+
},
|
|
1354
1356
|
height: props.height == undefined ? window.innerHeight - 164 : props.height,
|
|
1355
1357
|
repaintChangesOnly: true,
|
|
1356
1358
|
remoteOperations: false,
|
|
@@ -1416,8 +1418,7 @@ function grid(props, dataGridRef) {
|
|
|
1416
1418
|
mode: props.scroll.mode,
|
|
1417
1419
|
showScrollbar: props.scroll.showScrollbar,
|
|
1418
1420
|
scrollByContent: props.scroll.scrollByContent,
|
|
1419
|
-
scrollByThumb: props.scroll.scrollByThumb
|
|
1420
|
-
useNative: props.scrolUseNative == undefined ? false : props.scrolUseNative
|
|
1421
|
+
scrollByThumb: props.scroll.scrollByThumb
|
|
1421
1422
|
}), props.exportEnable === true && React__default.createElement(dataGrid.Export, {
|
|
1422
1423
|
enabled: true,
|
|
1423
1424
|
allowExportSelectedData: true,
|
|
@@ -1508,7 +1509,7 @@ function grid(props, dataGridRef) {
|
|
|
1508
1509
|
})), React__default.createElement(dataGrid.Summary, null, React__default.createElement(dataGrid.TotalItem, {
|
|
1509
1510
|
column: props.totalColumunName == undefined ? "Id" : props.totalColumunName,
|
|
1510
1511
|
summaryType: "count",
|
|
1511
|
-
displayFormat: props.TotaDatalLanguage + " : " + (props.TotalDataCount == undefined ? "{0}" : props.TotalDataCount)
|
|
1512
|
+
displayFormat: props.TotaDatalLanguage + " : " + (props.TotalDataCount == undefined ? "{0}" : props.TotalDataCount + " / " + props.TotalPagesize)
|
|
1512
1513
|
})))));
|
|
1513
1514
|
}
|
|
1514
1515
|
|