This question is locked. New answers and comments are not allowed.
I think this a simple problem but cant figure out. In my project I need to increase the width of the dropdownlist. How do i do it?
Here is my Dropdownlist
@Html.Telerik.DropDownListFor(Function(model) model.OrderEntityID).BindTo(New SelectList(ViewBag.OrderEntities, "OrderEntityID", "Name")).ClientEvents(Sub(events) events.OnChange("orderEntityID_OnChange"))
Have tried .DropDownHtmlAttributes( new { style = "width = 150px; font-size: 10px; height: 70px;" } )...
Here is my Dropdownlist
@Html.Telerik.DropDownListFor(Function(model) model.OrderEntityID).BindTo(New SelectList(ViewBag.OrderEntities, "OrderEntityID", "Name")).ClientEvents(Sub(events) events.OnChange("orderEntityID_OnChange"))
Have tried .DropDownHtmlAttributes( new { style = "width = 150px; font-size: 10px; height: 70px;" } )...