tags:

views:

33

answers:

1

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:RadComboBox>
+1  A: 

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)

shrichards
You can easily experiment with style changes like this by using tools like Firebug in FireFox. You can make changes and in real-time see how they affect the RadControls.
Todd