AllUsers.DwPaging.Pageable

Version: - boolean  

Summary

Returns True if there is more one page in the paging.

Settings

The value is generated automatically.

Remarks

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

Examples

Outputting the template tag

@GetBoolean("AllUsers.DwPaging.Pageable")

Check if tag has a value

@if(!bool.IsNullOrWhiteSpace(GetBoolean("AllUsers.DwPaging.Pageable"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("AllUsers.DwPaging.Pageable"); }

Outputting the template tag

<!--@AllUsers.DwPaging.Pageable-->

Check if boolean has a value

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