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.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
How can I resize the SearchBox from javascript ?
I want to resize the SearchBox based on some available width between a min and max value I provide.
I tried the following but nothing changed
searchBox._dropDownWidth =
"100px"
;
searchBox._element.clientWidth =
// Find the RadSearchBox DOM element as a jQuery object
var
searchBox = $telerik.$(
'#searchBox'
);
input = $telerik.$(searchBox.find(
'.rsbInput'
));
// Make the input wider
input.css(
'width'
,
'423px'
// Make the whole RadSearchBox wider
searchBox.css(
'500px'
Works perfectly.
Thank you very much :)