How can I change the height of textbox in telerik:combobox control?
This is the code I'm using:
<telerik:RadComboBox ID="ifgcboSearch" runat="server" Width="430px" OnItemDataBound="ifgcboSearch_ItemDataBound"
Skin="Office2007" EnableLoadOnDemand="True" EnableVirtualScrolling="True" OnItemsRequested="ifgcboSearch_ItemsRequested"
ShowMoreResultsBox="True" ValidationGroup="Search" ShowToggleImage="false" >
</telerik:RadCombo开发者_如何转开发Box>
The Telerik-prescribed method is to modify the CSS class applied to the input element of the Combobox:
.ComboBoxInput_Office2007
{
...
height: 50px;
}
(From http://www.telerik.com/help/aspnet/combobox/combosetheight.html)
精彩评论