@indigina/kendo 1.1.3 → 1.1.4
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/esm2020/lib/widgets/entity-list/entity-list.component.mjs +8 -8
- package/fesm2015/indigina-kendo.mjs +7 -7
- package/fesm2015/indigina-kendo.mjs.map +1 -1
- package/fesm2020/indigina-kendo.mjs +7 -7
- package/fesm2020/indigina-kendo.mjs.map +1 -1
- package/lib/widgets/entity-list/entity-list.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -2262,6 +2262,13 @@ class EntityListComponent {
|
|
|
2262
2262
|
preserveFragment: true,
|
|
2263
2263
|
});
|
|
2264
2264
|
}
|
|
2265
|
+
getData() {
|
|
2266
|
+
this.loadings++;
|
|
2267
|
+
this.service.getPage(this.gridState).subscribe((page) => {
|
|
2268
|
+
this.page = page;
|
|
2269
|
+
this.loadings--;
|
|
2270
|
+
});
|
|
2271
|
+
}
|
|
2265
2272
|
async remove(entity) {
|
|
2266
2273
|
this.loadings++;
|
|
2267
2274
|
this.service.delete(entity.id).subscribe(() => {
|
|
@@ -2276,13 +2283,6 @@ class EntityListComponent {
|
|
|
2276
2283
|
});
|
|
2277
2284
|
this.getData();
|
|
2278
2285
|
}
|
|
2279
|
-
getData() {
|
|
2280
|
-
this.loadings++;
|
|
2281
|
-
this.service.getPage(this.gridState).subscribe((page) => {
|
|
2282
|
-
this.page = page;
|
|
2283
|
-
this.loadings--;
|
|
2284
|
-
});
|
|
2285
|
-
}
|
|
2286
2286
|
getFilter() {
|
|
2287
2287
|
const filter = {
|
|
2288
2288
|
logic: 'and',
|