@magic-xpa/gui 4.1300.0-dev4130.95 → 4.1300.0-dev4130.96

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.
@@ -13673,6 +13673,14 @@ class PropTable {
13673
13673
  let prop = null;
13674
13674
  if (this._parent != null)
13675
13675
  prop = this._parent.getProp(propId);
13676
+ // Server recompute payloads reference the subform program task
13677
+ // property even when it was not materialized in the client control
13678
+ // property table. Since this property is excluded from refresh,
13679
+ // ignore its absence during recompute parsing.
13680
+ if (prop == null && propId === PropInterface.PROP_TYPE_PRGTSK_NUM) {
13681
+ parser.setCurrIndex(endContext + XMLConstants.TAG_TERM.length);
13682
+ return true;
13683
+ }
13676
13684
  if (prop == null)
13677
13685
  Events.WriteExceptionToLog(NString.Format("in PropTable.fillExistInnerObjects() no property with id={0}", strPropId));
13678
13686
  else