This question is locked. New answers and comments are not allowed.
Hi All,
I have the following:
my border for <td> takes a third of the page. You can see that I have set the combobox width to 100% so I expect the width of the combo to fill the width of my <td> element, however it doesn't. What's going on and how can I increase the width of the Combo? I'm on the latest release of the controls.
I have the following:
<td style="border:1px solid red">@(Html.Telerik().ComboBox() .Name("Manufacturer_Dropdown") .DropDownHtmlAttributes(new { style = "width:100%;" }) .BindTo(new SelectList(Model.ManufacturerTypes, "Value", "Text")) .Placeholder("-- Select --") .ClientEvents(events => events.OnChange("onManufacturer_Change")) .CascadeTo("Dropdown_Model") )</td>