ods-component-lib 1.17.77 → 1.17.80

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.
@@ -1281,9 +1281,11 @@ function grid(props, dataGridRef) {
1281
1281
  columnAutoWidth: false,
1282
1282
  focusedRowEnabled: false,
1283
1283
  wordWrapEnabled: false,
1284
- noDataText: "No Data",
1284
+ noDataText: props.noDataLanguage == undefined ? "No Data" : props.noDataLanguage,
1285
1285
  onEditCanceling: props.onEditCanceling,
1286
1286
  onExporting: onExporting,
1287
+ filterSyncEnabled: false,
1288
+ filterValue: null,
1287
1289
  height: window.innerHeight - 164,
1288
1290
  repaintChangesOnly: true,
1289
1291
  remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,
@@ -1447,13 +1449,13 @@ function grid(props, dataGridRef) {
1447
1449
  })), React.createElement(Summary, null, React.createElement(TotalItem, {
1448
1450
  column: "Id",
1449
1451
  summaryType: "count",
1450
- displayFormat: "{0} Total Data"
1452
+ displayFormat: "{0} " + props.TotaDatalLanguage
1451
1453
  }), props.sumaryRowItems && props.sumaryRowItems.map(function (item) {
1452
1454
  return React.createElement(TotalItem, {
1453
1455
  column: item.columnName,
1454
1456
  summaryType: item.aggregateFn,
1455
1457
  valueFormat: item.valueFormat ? item.valueFormat : "",
1456
- displayFormat: "Total: {0}"
1458
+ displayFormat: props.TotalLanguage + " : {0}"
1457
1459
  });
1458
1460
  })), React.createElement(StateStoring, {
1459
1461
  enabled: true,