5 Answers, 1 is accepted
0
Accepted

Richard Slade
Top achievements
Rank 2
answered on 06 Mar 2011, 05:09 PM
Hello,
you can change the filter context menu RighttoLeft in the following way
Hope that helps
Richard
you can change the filter context menu RighttoLeft in the following way
private
void
radGridView1_ContextMenuOpening(
object
sender, ContextMenuOpeningEventArgs e)
{
if
(e.ContextMenuProvider ==
null
)
{
e.ContextMenu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
}
}
Hope that helps
Richard
0

Tooraj
Top achievements
Rank 1
answered on 08 Mar 2011, 10:21 AM
Hello,
Unfortunately the context menu still apears left to right. there is a veritcal bar at the left of the context menu and I want to show both menu text and vertical bar at right side not left.
Unfortunately the context menu still apears left to right. there is a veritcal bar at the left of the context menu and I want to show both menu text and vertical bar at right side not left.
0

Richard Slade
Top achievements
Rank 2
answered on 08 Mar 2011, 10:23 AM
Hello,
By the middle of this month, the new Q1 2011 release is due out. This has many exciting new features, but one of the enhancements is an overhaul of the LeftToRight support.
Hope this helps
Richard
By the middle of this month, the new Q1 2011 release is due out. This has many exciting new features, but one of the enhancements is an overhaul of the LeftToRight support.
Hope this helps
Richard
0

Emanuel Varga
Top achievements
Rank 1
answered on 08 Mar 2011, 11:32 AM
Hello Tooraj,
Just change Richards code to this to achieve the desired behavior:
Hope this helps, if you have any other questions or comments, please let me know,
Best Regards,
Emanuel Varga
Telerik WinForms MVP
Just change Richards code to this to achieve the desired behavior:
void
radGridView1_ContextMenuOpening(
object
sender, ContextMenuOpeningEventArgs e)
{
if
(e.ContextMenu ==
null
)
{
return
;
}
e.ContextMenu.RightToLeft = RightToLeft.Yes;
}
Hope this helps, if you have any other questions or comments, please let me know,
Best Regards,
Emanuel Varga
Telerik WinForms MVP
0
Hi Tooraj,
Emanuel's suggestion should work fine for you and as Richard mentioned, as of Q1 2011 the Right-to-Left functionality will be improved and you will not have to bother setting this manually.
Greetings,
Ivan Todorov
the Telerik team
Emanuel's suggestion should work fine for you and as Richard mentioned, as of Q1 2011 the Right-to-Left functionality will be improved and you will not have to bother setting this manually.
Greetings,
Ivan Todorov
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!