@trudb/tru-common-lib 0.2.98 → 0.2.100
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.
|
@@ -3611,7 +3611,7 @@ class TruCloneView extends TruViewBase {
|
|
|
3611
3611
|
return false;
|
|
3612
3612
|
if (propertyName.startsWith('o'))
|
|
3613
3613
|
return false;
|
|
3614
|
-
let property = this.modelPropertyLookup.lookup.get(propertyName);
|
|
3614
|
+
let property = this.modelPropertyLookup.lookup.get(tableName + '.' + propertyName);
|
|
3615
3615
|
if (property && property.excludeFromCloning)
|
|
3616
3616
|
return false;
|
|
3617
3617
|
if (this.ignorePropertyList.some(function (propertyToIgnore) { return propertyToIgnore === propertyName; })) {
|
|
@@ -7281,7 +7281,7 @@ class TruDataGrid {
|
|
|
7281
7281
|
};
|
|
7282
7282
|
loadManyToManyGridData = (associatedEntities, associatableEntities, initalLoad) => {
|
|
7283
7283
|
if (initalLoad)
|
|
7284
|
-
this.
|
|
7284
|
+
this.loadGridData(associatedEntities);
|
|
7285
7285
|
else
|
|
7286
7286
|
associatedEntities = this.rowData.map((e) => { return e.$entity; });
|
|
7287
7287
|
let associatableTypeName = this.config.resultConfig.entityManyToManyType.name;
|