Hi Leandro,
Thanks for using Syncfusion product.
By default, GridControl does not have the support to filter the values. So, we suspect that you may use GridGroupingControl. To localize the filter strings in GridGroupingControl, you could implement the ILocalizationProvider interface and modify the strings based on your culture Portuguese using GetLocalizedString method. Please refer the following code example and our Dashboard sample
C#
//This should initialized before initializing the GridGroupingControl
LocalizationProvider.Provider = new Localizer ();
class Localizer : ILocalizationProvider
{
public void getstring()
{
}
public string GetLocalizedString(System.Globalization.CultureInfo culture, string name, object obj)
{
switch (name)
{
//Your localized string
case DynamicFilterResourceIdentifiers.StartsWith:
return "Começa com";
}
return string.Empty;
}
} |
Dashboard sample location: \Syncfusion\EssentialStudio\\Windows\Grid.Grouping.Windows\Samples\Localization Samples\Localization Demo\CS
Please refer the below forum link,
Please let us know if you need any further assistance on this.
Arulraj A