Here is my code for my TreeList:
The TreeList displays just fine except for one thing: it doesn't show the information from the PagerStyle-PagerTextFormat at all. Does the TreeList not support this? Am I missing something in my code? I can't find any documentation about this on the site.
Thank you.
<telerik:RadTreeList ID="rtlNotes" runat="server" GridLines="None" AutoGenerateColumns="false"OnNeedDataSource="rtlNotes_NeedDataSource" OnItemDataBound="rtlNotes_ItemDataBound" OnItemCommand="rtlNotes_ItemCommand" OnUpdateCommand="rtlNotes_UpdateCommand" OnInsertCommand="rtlNotes_InsertCommand" OnDeleteCommand="rtlNotes_DeleteCommand"ParentDataKeyNames="ParentId" DataKeyNames="Id" AllowSorting="true"AllowPaging="true" PageSize="20" OnPageIndexChanged="rtlNotes_PageIndexChanged" OnPageSizeChanged="rtlNotes_PageSizeChanged" PagerStyle-Position="TopAndBottom" PagerStyle-AlwaysVisible="true" PagerStyle-PagerTextFormat="{4} page {0} of {1}, item {2} to {3} of {5}"NoRecordsText="There are no notes for this person.">
...
</telerik:RadTreeList> The TreeList displays just fine except for one thing: it doesn't show the information from the PagerStyle-PagerTextFormat at all. Does the TreeList not support this? Am I missing something in my code? I can't find any documentation about this on the site.
Thank you.