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.
- package/data-grid/data-grid.component.d.ts +1 -0
- package/esm2020/data-grid/data-grid.component.mjs +4 -1
- package/esm2020/data-grid/unit-info-template/unit-info-template.component.mjs +2 -4
- package/esm2020/data-grid/user-info-template/user-info-template.component.mjs +2 -4
- package/fesm2015/ngx-rs-ant.mjs +5 -6
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +5 -6
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2020/ngx-rs-ant.mjs
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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) {
|