ClaimView
in namespace DotVVM.Framework.Controls
Renders different content to the users who have a specified claim and to users who haven't.
Usage & Scenarios
Allows to display different content to users who have a specific claim.
Sample 1: ClaimView
The Claim
property specifies the type of claim the user must have.
The Values
property optionally contains a comma-separated list of accepted values. If it is missing, all values are accepted.
The HasClaimTemplate
defines the content displayed to the users who have the Claim
with at least one of accepted values.
The HasNotClaimTemplate
defines the content displayed to other users.
By default, the control is hidden completely to the users who are not authenticated. If you want to display the HasNotClaimTemplate
even to the anonymous users, set the HideForAnonymousUsers
property to false
.
<dot:ClaimView Claim="Permission" Values="CanAddUsers" HideForAnonymousUsers="false">
<HasClaimTemplate>
I can add new users.
</HasClaimTemplate>
<HasNotClaimTemplate>
I can't add new users.
</HasNotClaimTemplate>
</dot:ClaimView>
Properties
Name | Type | Description | Notes | Default Value | |
---|---|---|---|---|---|
Attributes | Dictionary<String,Object> |
attribute
static value
|
null | ||
Claim | String | Gets or sets the type of claim the user must have. |
attribute
static value
bindable
|
null | |
ClientIDMode | ClientIDMode | Gets or sets the client ID generation algorithm. |
attribute
static value
|
Static | |
DataContext | Object | Gets or sets a data context for the control and its children. All value and command bindings are evaluated in context of this value. |
attribute
static value
bindable
|
null | |
HasClaimTemplate | ITemplate | Gets or sets the content displayed to the users who have the Claim with one or more of accepted values. |
inner element
static value
default
|
null | |
HasNotClaimTemplate | ITemplate | Gets or sets the content displayed to the users who don't have the Claim with any of accepted values. |
inner element
static value
|
null | |
HideForAnonymousUsers | Boolean | Gets or sets whether the control will be hidden completely to anonymous users. If set to false, the HasNotClaimTemplate will be rendered to anonymous users. |
attribute
static value
|
True | |
ID | String | Gets or sets the unique control ID. |
attribute
static value
bindable
|
null | |
IncludeInPage | Boolean | Gets or sets whether the control is included in the DOM of the page. |
attribute
bindable
|
True | |
InnerText | String | Gets or sets the inner text of the HTML element. |
attribute
static value
bindable
|
null | |
RenderWrapperTag | Boolean | Gets or sets whether the control should render a wrapper element. |
attribute
static value
|
False | |
Values | String[] | Gets or sets a comma-separated list of accepted values. If specified; the user must have the Claim with one or more of the values. Otherwise; all values are accepted. |
attribute
static value
|
null | |
Visible | Boolean | Gets or sets whether the control is visible. |
attribute
bindable
|
True | |
WrapperTagName | String | Gets or sets the name of the tag that wraps the Repeater. |
attribute
static value
|
div |
HTML produced by the control
The control renders the contents of the HasClaimTemplate
or HasNotClaimTemplate
property. Optionally you can enable wrapper tag rendering using
the RenderWrapperTag
property. The tag name can be changed using the WrapperTagName
property.
<div>
<!-- Contents of the HasClaimTemplate or HasNotClaimTemplate -->
</div>