Plumtree Pluggable Navigation API  
 

CListURLTemplateLinkMediator Class

This class extends CListURLTemplateMediator generating HTMLAnchors using URL Templates. Clicking on the URL will construct the full URL and redirect to it. The downside with these links is users can't open the link in a new window with "Open in New Window" option since a javascript onclick event is used to trigger the redirect and not the HREF. See javadoc for CListURLTemplateMediator for more information on URL Templates.

For a list of all members of this type, see CListURLTemplateLinkMediator Members.

System.Object
   com.plumtree.portalpages.common.mediator.CListURLTemplateMediator
      com.plumtree.portalpages.common.mediator.CListURLTemplateLinkMediator

public class CListURLTemplateLinkMediator : CListURLTemplateMediator

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Requirements

Namespace: com.plumtree.portalpages.common.mediator

Assembly: portalpages (in portalpages.dll)

See Also

CListURLTemplateLinkMediator Members | com.plumtree.portalpages.common.mediator Namespace | Example use: ICPListIterator mediator = new CListURLTemplateLinkMediator(m_asOwner, cpList1); mediator.SetLabelMaxLength(50); //set the maximum label length to 50 characters while (mediator.Next()) { HTMLAnchor anchor = (HTMLAnchor) mediator.GetEntry(); ... }