Im using several select box in my form and integrated the combobox plugin
https://github.com/danielfarrell/bootstrap-combobox
the problem of this plugin the dropdown menu is not 100% width
i fixed it with this and its working fine
<style>
.dropdown-menu
{
width: 100%;
}
</style>
<select class="combobox">
<option></option>
<option value="PA">Pennsylvania</option>
<option value="CT">Connecticut</option>
<option value="NY">New York</option>
<option value="MD">Maryland</option>
<option value="VA">Virginia</option>
</select>
but right now one of my date-time select input is not working
how do i edit this css so it will efect select box with combobox class only
<style>
.dropdown-menu
{
width: 100%;
}
</style>

dropdown-menuclass? Are you using that class more often?