开发者

Changing height of a telerik:combobox control

开发者 https://www.devze.com 2023-01-11 02:02 出处:网络
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=\"ifgcbo

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)

0

精彩评论

暂无评论...
验证码 换一张
取 消