ListShowInfoWindowAction

Version: - string  

Summary

Returns the action to show info window (e.g. dbclick)

Settings

The value is based on the Show info window action field in the paragraph module settings.

(Page - Paragraph - Module - Location list settings - Show info window action)

Examples

Outputting the template tag

@GetString("ListShowInfoWindowAction")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("ListShowInfoWindowAction"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("ListShowInfoWindowAction"); }

Outputting the template tag

<!--@ListShowInfoWindowAction-->

Check if string has a value

<!--@If Defined(@ListShowInfoWindowAction)--> Let's output this tag here: <strong><!--@ListShowInfoWindowAction--></strong> <!--@EndIf(@ListShowInfoWindowAction)-->