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
Resources
Design and Productivity Tools
Does the kendo-numerictextbox support tooltips? I cant seem to find any documentation on it.
The placeholder wont do as its gone after text is typed.
Hi Abhijit,
To display a tooltip over the NumericTextBox component:
1. Provide a title to the component that should display the tooltip. This title will be shown upon interaction.
<kendo-numerictextbox title="foo"> </kendo-numerictextbox>
2. Wrap the component inside an element with the kendoTooltip directive.
Here is an example demonstrating this approach:
https://stackblitz.com/edit/angular-ysgvqk
A similar result can also be achieved using our PopoverComponent:
1. Define the contents of the Popover component
2. Apply the kendoPopoverAnchor directive to the element that should display the popover.
3. Pass a popover instance to the popover input of the kendoPopoverAnchor directive.
Please refer to this example that demonstrates the suggested approach:
https://stackblitz.com/edit/angular-o6cwrr
I hope this helps.
Regards, SimeonProgress Telerik