Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
Support and Learning
Productivity and Design Tools
Hello,
How do I set the height of the actual input box? I have tried the following without success.
div.CustomCssClass .rcbInputCell INPUT.rcbInput { height: 25px; width: 250px; } div.CustomCssClass { height: 35px; }
Thanks
To adjust the height of the input box within a RadComboBox, you indeed need to target the .rcbInput class
.rcbInput
<style> html .RadComboBox .rcbInput { height: 25px; } </style>
<style> html .RadComboBox.CustomCssClass .rcbInput { height: 25px; } </style> <telerik:RadComboBox runat="server" ID="RadComboBox1" CssClass="CustomCssClass" Filter="StartsWith"> <Items> <telerik:RadComboBoxItem Text="Alpha" /> <telerik:RadComboBoxItem Text="Vita" /> <telerik:RadComboBoxItem Text="Ghamma" /> <telerik:RadComboBoxItem Text="Epsilon" /> <telerik:RadComboBoxItem Text="Zeta" /> <telerik:RadComboBoxItem Text="Eta" /> <telerik:RadComboBoxItem Text="Theta" /> <telerik:RadComboBoxItem Text="Iota" /> <telerik:RadComboBoxItem Text="Kappa" /> <telerik:RadComboBoxItem Text="Lambda" /> </Items> </telerik:RadComboBox>
You can find more information in these articles:
Regards, Rumen Progress Telerik