gdoron
gdoron

Reputation: 150273

left to right telerik combobox in right to left mvc application

I'm writing a mvc 3 right to left application. In that application I've a telerik's combobox, and I need it to be left to right. I added a Html attribute to the combobox like that new {dir="ltr"} but it worked only for the text box with the value but not to the list. I also try to put the combobox within a dir="ltr" but it didn't work either.

anyone have an idea why?

Upvotes: 1

Views: 652

Answers (2)

Dick Lampard
Dick Lampard

Reputation: 2266

How about using a wrapper with rtl direction set, as in this demo - http://demos.telerik.com/aspnet-mvc/combobox/rtlsupport? Try it.

Upvotes: 1

George K
George K

Reputation: 1763

You can check this example, which shows how to use ComboBox UI component in RTL mode.

Upvotes: 1

Related Questions