Ecom:Product.Configurator.NoneSelected.Text

Version: - string  

Summary

Returns the text that is rendered for the "None selected" option in the BOM configurator.

Settings

The value is based on the Nothing selected text field above the radio buttons that appears when a BOM is unfolded on the Parts list tab.

(Eommerce > Product Catalog > Shop > Product group > Product > Parts list tab > Group > Nothing selected text)

Examples

Outputting the template tag

@GetString("Ecom:Product.Configurator.NoneSelected.Text")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Product.Configurator.NoneSelected.Text"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.Configurator.NoneSelected.Text"); }

Outputting the template tag

<!--@Ecom:Product.Configurator.NoneSelected.Text-->

Check if string has a value

<!--@If Defined(@Ecom:Product.Configurator.NoneSelected.Text)--> Let's output this tag here: <strong><!--@Ecom:Product.Configurator.NoneSelected.Text--></strong> <!--@EndIf(@Ecom:Product.Configurator.NoneSelected.Text)-->