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
Docs & Resources
Productivity and Design Tools
Hi,
I would like to use a TelerikTooltip as validation message container, so that the user can click to close the tooltip after reading the message.
Can the TelerikTooltip be made to display immediately and then respond to clicks as normal afterwards?
I figured it out and managed to trigger the tooltip to pop-up using JSInterop call at the approprate time in my C# code.
function trigger(elementId, delay){ window.setTimeout(function(){ document.getElementById(elementId).click(); }, delay)}