Why doesn't this work?
$('#my-kendo-numerictextbox').attr('title', '100');
Currently the title/tooltip is displaying the value the is already visible in the textbox - seriously?
I want to be able to change the value dynamically to reflect the upper value allowed in the numeric textbox, in other words, some useful information.I'm a bit weird that way, wanting to show the users something that is actually useful...
thanks
6 Answers, 1 is accepted

The NumericTextBox component renders two input elements internally. Thus, when changing the title attribute it should be applied to the input holding the formatted value.
Check out the example below that illustrates the approach.
Regards,
Viktor Tachev
Progress Telerik

Thanks that works!
Another solution (just discovered): add a class and use the class selector:
$('.mykendonumerictextboxclassname').attr('title', '100');
The approach you describe is also an option. Thank you for sharing it with the community.
Regards,
Viktor Tachev
Progress Telerik

Hello,
I have tried this approach but when the value changes in the numeric textbox the title comes back again, so I have removed the attribute into the event "change" and it's working for me.
$("#numerictextbox").kendoNumericTextBox({
change: function(e) {
e.sender.wrapper.find(".k-formatted-value").attr("title", "");
}
});

Hello,
I have created a feature request in order to include it in next releases.Please, vote it if you like it.
https://feedback.telerik.com/kendo-jquery-ui/1457415-allow-numerictextbox-to-have-no-title