Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NavigationLinks in Version 10.24.0108.2-main

  • If aspect created via 'new NavigationLinkAspect(new ...Target)' , it can now be created using 'new AbsoluteNavigationLinkAspect, ClassNavigationLinkAspect, ObjectNavigationLinkAspect'.

Example

Code Block
languagec#
// Old
propertyLinkBuilder.Element.Aspects.Add(new NavigationLinkAspect(new AbsoluteNavigationLinkAspectTarget { URL = url }, openInTarget));

// New
propertyLinkBuilder.Element.Aspects.Add(new AbsoluteNavigationLinkAspect(openInTarget) { URL = url }
      .EvaluateMetaValuePropertiesInContext(propertyLinkBuilder.Element));
  • EvaluateMetaValuePropertiesInContext() is not needed when using the extension methods but is required when the expression parameters need to be evaluated in a MetaElement context. 

  • Rename PropertyLinkBuilderMethod.SetAbsoluteNavigationLinkExpression() => to SetAbsoluteNavigationLink() 

  • On XML layouts '...expression' fields on <Aspects> can be moved into primary field. 

Example XML

Code Block
languagexml
<!-- Old -->
<objectNavigationLinkAspect metaClassExpression="[expression]If(true, 'Office', 'Company')" primaryKeyExpression="[expression...."></objectNavigationLinkAspect>

<!-- New -->
<objectNavigationLinkAspect metaClass="[expression]If(true, 'Office', 'Company')" pri

...