List
Available tags
DM.Pub.ExcelExportUrl
Allow to perfrom downloading entire data of Data List in CSV/Excel.
@GetString("DM.Pub.ExcelExportUrl")
DwPaging.CurrentPage
Returns the number of the current page of the frontend view.
@GetInteger("DwPaging.CurrentPage")
DwPaging.NextButtonImage
Returns the image of the Next button
@GetString("DwPaging.NextButtonImage")
DwPaging.NextButtonText
Returns the text of the Next button.
@GetString("DwPaging.NextButtonText")
DwPaging.NextPageNumber
Returns the number of the next page.
@GetInteger("DwPaging.NextPageNumber")
DwPaging.Pageable
Returns True if there is more than one page in the paging.
@GetBoolean("DwPaging.Pageable")
DwPaging.PageCount
Returns the total number of pages in the frontend view.
@GetInteger("DwPaging.PageCount")
DwPaging.PageSize
Returns the size of the page in the frontend view.
@GetInteger("DwPaging.PageSize")
DwPaging.PreviousButtonImage
Returns the image of the Previous button.
@GetString("DwPaging.PreviousButtonImage")
DwPaging.PreviousButtonText
Returns the text of the Previous button.
@GetString("DwPaging.PreviousButtonText")
DwPaging.PreviousPageLink
Returns the previous page link.
@GetString("DwPaging.PreviousPageLink")
DwPaging.PreviousPageNumber
Returns the number of the previous page.
@GetInteger("DwPaging.PreviousPageNumber")
DwPaging.TypeOfNextButton
Returns the type of the Next
button in frontend.
@GetString("DwPaging.TypeOfNextButton")
DwPaging.TypeOfPreviousButton
Returns the type of the Previous
button in frontend.
@GetString("DwPaging.TypeOfPreviousButton")
Available loops
Columns
The Columns
loop lets you display various information about columns.
@foreach (LoopItem item in GetLoop("Columns")){ <p>@item.GetValue("TagName")</p> }
DwPaging.LoopAllPages
The DwPaging.LoopAllPages
loop lets you display various information about your pages.
@foreach (LoopItem item in GetLoop("DwPaging.LoopAllPages")){ <p>@item.GetValue("TagName")</p> }
DwPaging.LoopPageGroup
The DwPaging.LoopPageGroup
loop lets you display various information about paging.
@foreach (LoopItem item in GetLoop("DwPaging.LoopPageGroup")){ <p>@item.GetValue("TagName")</p> }
Rows
The Rows
loop lets you display various information about the rows.
@foreach (LoopItem item in GetLoop("Rows")){ <p>@item.GetValue("TagName")</p> }