Is there a way to adjust the width of the kendo ui combobox? My current version is 2012.3.1114 I've attempted to modify it using the following CSS:
#options {
padding: 30px;
}
#options h3 {
font-size: 1em;
font-weight: bold;
margin: 25px 0 8px 0;
}
.k-combobox{
width:60px; }
Javascript: $("#select").kendoComboBox();
Html:
<select id="select">
<option value="null">nada</option>
<option value="true">ON</option>
<option value="false">OFF</option>
</select>
It seems to work when using a local file but not on jsfiddle: example