Table of Contents
MoreItemsMessageFormat Property

Gets or sets the text used to format the message that indicates more items are available.

Syntax
 public String MoreItemsMessageFormat { get; set; }
Remarks

EO.Web ListBox can load more items on demand as user scrolls down. When this feature is enabled, the ListBox displays a message at the bottom of the list box indicating more items are available. Use this property to set the "template" of this text.

The default value is {remaining} item(s) available At runtime, {remaining} will be replaced with the number of items not loaded yet. The following "variables" are supported:

Variable Remark
{total} The total number of items as specified by TotalItemCount.
{loaded} The total number of loaded items.
{remaining} The total number of items yet to be loaded.
See Also