barsa-sap-ui 2.2.79 → 2.2.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.
@@ -3412,7 +3412,7 @@ class UiEditableGridComponent extends SapUiReportBaseComponent {
3412
3412
  this.valueType = this.context.valueFieldType;
3413
3413
  const formSetting = this.context.Setting.FormTemplate;
3414
3414
  this.horizontalRows = this.context.Setting.View.HorizontalColumn;
3415
- this.valueControlFieldCaption = formSetting?.View.ControlInfo.find((col) => col.ControlName === this.valueDbName).ControlFieldCaption;
3415
+ this.valueControlFieldCaption = formSetting?.View?.ControlInfo?.find((col) => col.ControlName === this.valueDbName).ControlFieldCaption;
3416
3416
  // there is different between ulv modatalist and viewer datalist. in matrixviewer adapter modatalist transformed.
3417
3417
  // so we need tell to ulvmainservice to update modatalist
3418
3418
  this._ulvMainService.reSetMoDataList(this.context.moDataList);
@@ -12512,6 +12512,7 @@ class UiMoInfoUlvComboComponent extends FieldBaseComponent {
12512
12512
  setTimeout(() => {
12513
12513
  this._setValueText(this.value);
12514
12514
  });
12515
+ this._checkShowExtraButtons();
12515
12516
  }
12516
12517
  onPagingClick(e) {
12517
12518
  PreventDefaulEvent(e);
@@ -12735,7 +12736,7 @@ class UiMoInfoUlvComboComponent extends FieldBaseComponent {
12735
12736
  const ulvAdapter = this.ulvAdapter;
12736
12737
  const view = ulvAdapter?.Setting?.View;
12737
12738
  if (view && view.Columns?.length && this.allColumns.length === 0) {
12738
- this.allColumns = view.Columns.filter((c) => Number(c.MetaFieldTypeId) > 0);
12739
+ this.allColumns = view.Columns.filter((c) => c.Name !== 'Id' && !c.Name.startsWith('$'));
12739
12740
  }
12740
12741
  }
12741
12742
  _focus() {