Completed
Last Updated: 02 Jan 2020 09:34 by ADMIN
Release R1 2020
Gary
Created on: 30 Dec 2019 12:26
Category: PivotGrid
Type: Bug Report
1
RadPivotGrid: Misspelled Quarter group in the ContextGroupByQuaterOptionsMenuText

Check the attached screenshot:

Attached Files:
1 comment
ADMIN
Hristo
Posted on: 30 Dec 2019 12:27

Hi,

A possible workaround is to use a custom localization provider with the correct spelling: 

public class MyEnglishPivotGridLoclizationProvider : PivotGridLocalizationProvider
{
    public override string GetLocalizedString(string id)
    {
        switch (id)
        {
            case PivotStringId.ContextGroupByQuaterOptionsMenuText: return "Group by Quarter";
        }

        return base.GetLocalizedString(id);

    }
}

 

Regards,
Hristo
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.