ItemCreator:Item.Fields.IsRequired

Version: - boolean  

Summary

Returns True if the item field is marked as required.

Settings

The value is based on the Required field in the item field settings.

(Management Center - Item types - Item type - Item field - Required)

Examples

Outputting the template tag

@GetBoolean("ItemCreator:Item.Fields.IsRequired")

Check if tag has a value

@if(!bool.IsNullOrWhiteSpace(GetBoolean("ItemCreator:Item.Fields.IsRequired"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("ItemCreator:Item.Fields.IsRequired"); }

Outputting the template tag

<!--@ItemCreator:Item.Fields.IsRequired-->

Check if boolean has a value

<!--@If Defined(@ItemCreator:Item.Fields.IsRequired)--> Let's output this tag here: <strong><!--@ItemCreator:Item.Fields.IsRequired--></strong> <!--@EndIf(@ItemCreator:Item.Fields.IsRequired)-->