<dlog:Panel id={unique Panel ID} ViewRoles={List of roles}></dlog:Panel>
Usage
Used as a container for other controls. Dynamically shows/hides controls depending on view permissions.
Attributes
id: (Required) A unique identifier for the control. Multiple panels displaying the same field may be used on a page, but each Panel control must have a unique ID.
ViewRoles: (Optional) Comma separated list of roles that can view controls in the Panel. If ViewRoles are not defined, then content is visible to all site visitors.
View more attributesExample
<dlog:Panel id="PanelAuthenticatedContent" ViewRoles="RegisteredUser">
This content only viewable by authenticated (registered) users.
</dlog:Panel>
<dlog:Panel id="PanelPartnerContent" ViewRoles="Partner,ChannelPartner">
This content only viewable by partner users.
</dlog:Panel>
<dlog:Panel id="PanelCustomerContent" ViewRoles="Customer">
This content only viewable by customer users.
</dlog:Panel>