@trudb/tru-common-lib 0.2.183 → 0.2.184
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.
|
@@ -6376,19 +6376,11 @@ class TruDataGridClipboard {
|
|
|
6376
6376
|
this.copiedRows.forEach((copiedRow, index) => {
|
|
6377
6377
|
let rowPropertyValues = [];
|
|
6378
6378
|
let properties = copiedRow.$entity.entityType.getPropertyNames();
|
|
6379
|
-
|
|
6380
|
-
|
|
6381
|
-
|
|
6382
|
-
return acc;
|
|
6383
|
-
}, []);
|
|
6384
|
-
propertiesFilteredByColDef
|
|
6385
|
-
.forEach((propertyName) => {
|
|
6379
|
+
columnDefs
|
|
6380
|
+
.forEach((columnDef) => {
|
|
6381
|
+
let propertyName = columnDef.field;
|
|
6386
6382
|
let propertyConfig = copiedRow[propertyName]?.property;
|
|
6387
|
-
if (propertyConfig
|
|
6388
|
-
propertyName !== tableName + 'Ref' &&
|
|
6389
|
-
propertyName !== 'rowver' &&
|
|
6390
|
-
propertyName !== 'Merge_Data_Set' &&
|
|
6391
|
-
!propertyName.startsWith('o'))
|
|
6383
|
+
if (propertyConfig)
|
|
6392
6384
|
rowPropertyValues.push(this.formatCellValue(copiedRow[propertyName], copiedRow[propertyName].property, copiedRow.$entity, copiedRow.$entity.getProperty(propertyName)));
|
|
6393
6385
|
});
|
|
6394
6386
|
multiRowString += rowPropertyValues.join('\t') + '\n';
|