I just updated my project from 2015 to 2018.1 version of infragistics.
.Features(features => {
features.Paging().Type(OpType.Local).Locale(locale => { locale.PagerRecordsLabelTemplate(""); locale.NextPageLabelText(""); locale.PageSizeDropDownLabel(""); locale.PageSizeDropDownTrailingLabel(""); locale.NextPageTooltip("");locale.PageSizeDropDownTooltip(""); locale.CurrentPageDropDownTrailingLabel(""); locale.PagerRecordsLabelTooltip("");
locale.PrevPageLabelText(""); })
I have problems with .PrevPageLabelText.PagingLocaleBuilder <PagingLocale> does not contain a definition for PrevPageLabelText
Hello,Thank you for posting in our community.I was able to reproduce the behavior that you have described and I created a support case with an id: CAS-196930-J6F4D9. You can view this case on our website after signing in with your credentials under "Support activity" section.I have asked our engineering staff to examine this further and I will update you via the created support ticket.
What I can suggest at this point is setting all locale options using string.
For example:
.Features(features => { features.Paging().Type(OpType.Local).Locale("{ prevPageLabelText: 'Your custom label text here', nextPageLabelText: 'Your custom label text here'}"); })
Please let me know if you need any additional information.