A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
DynamicPropertyCollection dynProperties = DynamicProperty.ListForPage(pd.PageLink); DynamicProperty dp = dynProperties["Country"]; //works ok this.Country = (PageReference.Parse(dp.InheritedValue.ToString())); //PropertyValue always null this.Country = (PageReference)dp.PropertyValue.Value; DynamicProperty dp2 = dynProperties["HasCarSubMenu"]; //InheritedValue always "" this.HasCarSubMenu = (dp2.InheritedValue.ToString().Equals("")); //PropertyValue always null this.HasCarSubMenu = (dp2.PropertyValue.IsNull);How can I reach dynamic values from edit mode, I get crazy ... /Björn