Users.DwPaging.PageSize

Version: -  

Summary

Returns the size of the page in the frontend view.

Settings

The value is based on the Results per page field in the paragraph settings of the module.

(Paragraph > Module settings > Paging panel > Results per page)

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.PageSize")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if object has a value

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