ods-component-lib 1.18.8 → 1.18.9

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.
@@ -17332,9 +17332,9 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
17332
17332
  }
17333
17333
  var result = "";
17334
17334
  if (filteredRowCount > 0) {
17335
- result = totalloaded + " Filtered" + (totalRecordCount > 0 ? totalloaded + " Loaded - " + totalRecordCount + " Total" : "");
17335
+ result = "" + totalloaded + props.customSummary.summaryFilteredDataLabel + (totalRecordCount > 0 ? totalloaded + " " + props.customSummary.summaryLoadedDataLabel + ("- " + totalRecordCount) + props.customSummary.summaryTotalDataLabel : " ");
17336
17336
  } else {
17337
- result = totalRecordCount > 0 ? totalloaded + " Loaded - " + totalRecordCount + " Total" : "";
17337
+ result = totalRecordCount > 0 ? totalloaded + " " + props.customSummary.summaryLoadedDataLabel + ("- " + totalRecordCount) + props.customSummary.summaryTotalDataLabel : "";
17338
17338
  }
17339
17339
  return result;
17340
17340
  }, [data, filteredRowCount, loadedPageCount, props.pageSize, totalRecordCount]);
@@ -17458,7 +17458,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
17458
17458
  dataField: "Actionss",
17459
17459
  fixed: true,
17460
17460
  allowSorting: false,
17461
- caption: "",
17461
+ caption: props.actionButtonGroupCaption,
17462
17462
  type: "buttons",
17463
17463
  showInColumnChooser: false,
17464
17464
  cellRender: function cellRender() {