DwPaging.Pageable
Version: - booleanSummary
Returns True if there is more than one page in the paging.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetBoolean("DwPaging.Pageable")
Check if tag has a value
@if(!bool.IsNullOrWhiteSpace(GetBoolean("DwPaging.Pageable"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
bool storedTag = GetBoolean("DwPaging.Pageable");
}
Outputting the template tag
<!--@DwPaging.Pageable-->
Check if boolean has a value
<!--@If Defined(@DwPaging.Pageable)-->
Let's output this tag here: <strong><!--@DwPaging.Pageable--></strong>
<!--@EndIf(@DwPaging.Pageable)-->