flameresttable 1.0.44 → 1.0.45
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/package.json
CHANGED
package/src/Table/FlameTable.ts
CHANGED
|
@@ -415,7 +415,13 @@ export default class FlameTable<T> {
|
|
|
415
415
|
* @returns
|
|
416
416
|
*/
|
|
417
417
|
public getSelectedRows() {
|
|
418
|
-
|
|
418
|
+
const res = [];
|
|
419
|
+
for (const key in this.RowsParams) {
|
|
420
|
+
const el = this.RowsParams[key];
|
|
421
|
+
if (el.selected)
|
|
422
|
+
res.push(el.item)
|
|
423
|
+
}
|
|
424
|
+
return res;
|
|
419
425
|
}
|
|
420
426
|
|
|
421
427
|
/**
|