pict-section-form 1.0.134 → 1.0.136
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
|
@@ -52,9 +52,9 @@ class DynamicTabularData extends libPictProvider
|
|
|
52
52
|
{
|
|
53
53
|
// The neat thing about how the tabular groups work is that we can make it clever about whether it's an object or an array.
|
|
54
54
|
let tmpGroup = pView.getGroup(pGroupIndex);
|
|
55
|
-
if (!tmpGroup)
|
|
55
|
+
if (!tmpGroup || !tmpGroup?.RecordSetAddress)
|
|
56
56
|
{
|
|
57
|
-
this.log.warn(`PICT View Metatemplate Helper getTabularRecordSet ${pGroupIndex} was not a valid group.`);
|
|
57
|
+
this.log.warn(`PICT View Metatemplate Helper getTabularRecordSet ${pGroupIndex} was not a valid group or did not have a valid RecordSetAddress.`);
|
|
58
58
|
return false;
|
|
59
59
|
}
|
|
60
60
|
|
|
@@ -772,7 +772,7 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
772
772
|
//if (this.pict.TransactionTracking.checkEvent(tmpTransaction.TransactionKey, `I${tmpInput.Hash}-P${tmpInputProviderList[l]}`, pFunctionName))
|
|
773
773
|
if ((tmpInput.PictForm.InputType == 'Option') || this.pict.TransactionTracking.checkEvent(tmpTransaction.TransactionKey, `I${tmpInput.Hash}-P${tmpInputProviderList[l]}`, pFunctionName))
|
|
774
774
|
{
|
|
775
|
-
this.pict.providers[tmpInputProviderList[l]][pFunctionName](this, tmpGroup, j, tmpInput, tmpValue, tmpInput.Macro.HTMLSelector);
|
|
775
|
+
this.pict.providers[tmpInputProviderList[l]][pFunctionName](this, tmpGroup, j, tmpInput, tmpValue, tmpInput.Macro.HTMLSelector, tmpTransactionGUID);
|
|
776
776
|
}
|
|
777
777
|
}
|
|
778
778
|
catch (pError)
|
|
@@ -824,7 +824,7 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
824
824
|
{
|
|
825
825
|
if (this.pict.TransactionTracking.checkEvent(tmpTransaction.TransactionKey, `TI${tmpInput.Hash}-P${tmpInputProviderList[l]}-R${r}`, pFunctionName))
|
|
826
826
|
{
|
|
827
|
-
this.pict.providers[tmpInputProviderList[l]][pFunctionName + 'Tabular'](this, tmpGroup, tmpInput, tmpValue, tmpInput.Macro.HTMLSelectorTabular, r);
|
|
827
|
+
this.pict.providers[tmpInputProviderList[l]][pFunctionName + 'Tabular'](this, tmpGroup, tmpInput, tmpValue, tmpInput.Macro.HTMLSelectorTabular, r, tmpTransactionGUID);
|
|
828
828
|
}
|
|
829
829
|
}
|
|
830
830
|
catch (pError)
|