ods-component-lib 1.17.94 → 1.17.96

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 CHANGED
@@ -1456,7 +1456,15 @@ function grid(props, dataGridRef) {
1456
1456
  menuItemRender: renderMenuItem
1457
1457
  })), React__default.createElement(dataGrid.Summary, null, React__default.createElement(dataGrid.TotalItem, {
1458
1458
  column: "Id",
1459
- summaryType: "count"
1459
+ summaryType: "count",
1460
+ displayFormat: "{0} " + props.TotaDatalLanguage
1461
+ }), props.sumaryRowItems && props.sumaryRowItems.map(function (item) {
1462
+ return React__default.createElement(dataGrid.TotalItem, {
1463
+ column: item.columnName,
1464
+ summaryType: item.aggregateFn,
1465
+ valueFormat: item.valueFormat ? item.valueFormat : "",
1466
+ displayFormat: props.TotalLanguage + " : {0}"
1467
+ });
1460
1468
  })), React__default.createElement(dataGrid.StateStoring, {
1461
1469
  enabled: true,
1462
1470
  type: "custom",