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
I just answered your support ticket with this question and I am pasting the answer here as well for anyone else having the same query.
Here is an example that shows how you can use jQuery to traverse the DOM in order to get the element that you want to focus:
<ol>
<li>click the button</li>
<li>press enter to expand the color picker</li>
</ol>
<asp:Button Text=
"focus color picker"
ID=
"testBtn"
OnClientClick=
"focusColorPicker(); return false;"
runat=
"server"
/>
<telerik:RadColorPicker runat=
"rcp1"
RenderMode=
"Lightweight"
ShowIcon=
"true"
></telerik:RadColorPicker>
<script>
function
focusColorPicker() {
//see more on referencing controls on the client here https://docs.telerik.com/devtools/aspnet-ajax/general-information/get-client-side-reference
$telerik.$(
"[id^='rcp1']"
).find(
".rcpIcon a"
).first().focus();
}
</script>