Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out 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