Users.DwPaging.NextButtonText

Version: -  

Summary

Returns the text of the Next button in frontend.

Settings

The value is based on the 'Next' button text input field.

(Paragraph > Module settings > Paging panel > 'Next' button text)

Remarks

Tag is only available if Activated checkbox is enabled in Extranet module settings in Paging section.

Examples

Outputting the template tag

@GetObject("Users.DwPaging.NextButtonText")

Check if tag has a value

@if(!var.IsNullOrWhiteSpace(GetObject("Users.DwPaging.NextButtonText"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ var storedTag = GetObject("Users.DwPaging.NextButtonText"); }

Outputting the template tag

<!--@Users.DwPaging.NextButtonText-->

Check if object has a value

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