Ecom:FieldDisplayGroup.Field.IsList

Version: 9.7.0 boolean  

Summary

Returns True if the field type is list.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetBoolean("Ecom:FieldDisplayGroup.Field.IsList")

Check if tag has a value

@if(!bool.IsNullOrWhiteSpace(GetBoolean("Ecom:FieldDisplayGroup.Field.IsList"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("Ecom:FieldDisplayGroup.Field.IsList"); }

Outputting the template tag

<!--@Ecom:FieldDisplayGroup.Field.IsList-->

Check if boolean has a value

<!--@If Defined(@Ecom:FieldDisplayGroup.Field.IsList)--> Let's output this tag here: <strong><!--@Ecom:FieldDisplayGroup.Field.IsList--></strong> <!--@EndIf(@Ecom:FieldDisplayGroup.Field.IsList)-->