maskBoxColumn.FormatInfo = CultureInfo.CreateSpecificCulture("en-AE");
Hello, Mohsin,
Thank you for reporting this. You can use the following workaround and explicitly set the editor's culture to be the same as the GridViewMaskBoxColumn:
private void RadGridView1_CellEditorInitialized(object sender, GridViewCellEventArgs e)
{
RadMaskedEditBoxEditor editor = e.ActiveEditor as RadMaskedEditBoxEditor;
if (editor != null)
{
editor.MaskTextBox.Culture = CultureInfo.CreateSpecificCulture("en-AE");
}
}
I hope this helps. If you have other questions, please let me know.
Regards,
Nadya | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.