ngx-rs-ant 1.5.3 → 1.5.5

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.
@@ -3030,9 +3030,7 @@ class UnitInfoTemplateComponent {
3030
3030
  this.displayName = this.cellInfo.value;
3031
3031
  }
3032
3032
  this.service.getUnitInfo(this.uid).subscribe(response => {
3033
- if (needRemoteDisplayName) {
3034
- this.displayName = response.displayName;
3035
- }
3033
+ this.displayName = response.displayName;
3036
3034
  const unitInfo = response.unitInfo;
3037
3035
  let content = '<table>';
3038
3036
  for (const item of unitInfo) {
@@ -3074,9 +3072,7 @@ class UserInfoTemplateComponent {
3074
3072
  this.displayName = this.cellInfo.value;
3075
3073
  }
3076
3074
  this.service.getUserInfo(this.uid).subscribe(response => {
3077
- if (needRemoteDisplayName) {
3078
- this.displayName = response.displayName;
3079
- }
3075
+ this.displayName = response.displayName;
3080
3076
  const userInfo = response.userInfo;
3081
3077
  let content = '<table>';
3082
3078
  for (const item of userInfo) {
@@ -3204,6 +3200,9 @@ class DataGridComponent {
3204
3200
  getSelectedRowKeys() {
3205
3201
  return this.dxDataGrid.instance.getSelectedRowKeys();
3206
3202
  }
3203
+ getSelectedRowsData() {
3204
+ return this.dxDataGrid.instance.getSelectedRowsData();
3205
+ }
3207
3206
  refresh(callback) {
3208
3207
  this.dxDataGrid.instance.refresh().then(() => {
3209
3208
  if (callback) {