Hello,
I'm trying to add a tooltip to a numberspinner but I'm having no luck. The following code works with comboboxes, combogrids and dateboxes but it's not working for the numberspinner.
Please advise.
function setTooltip(conName, tooltip) {
var control = $(conName).numberspinner('textbox');
control.parent().tooltip({content : tooltip});
}
Thank you.