InputLanguageManager.InputLanguage
="he-IL" Language="he-IL"
FlowDirection
="RightToLeft"
2. setting the above properties of the relevant cell in the BeginningEdit event.
private
void RadGridView1_BeginningEdit(object sender, GridViewBeginningEditRoutedEventArgs e)
{
e.Cell.Language = System.Windows.Markup.
XmlLanguage.GetLanguage("he-IL");
e.Cell.FlowDirection =
FlowDirection.RightToLeft;
InputLanguageManager.SetInputLanguage(e.Cell, System.Globalization.CultureInfo.GetCultureInfoByIetfLanguageTag("he-IL"));
}
I'm using RadGridView version: 2009.2.911.35
Thanks.
Hi
I need to export the grid to word or excel
The problem is that grid with paging export only the selected page I need to export the entire grid how can I do this?
Best regards Ehud
Hi
After I download the new dlls of telerik the grid start to do auto validation
We are implementing I Data Error Info interface and the grid catch all the exceptions
That was thrown.
I need to disable the validation in the grid
Best Regards
Ehud