I have a filter panel with several inputs , if some of these input does not pass a validation rule, it will instantiate a tooltip to signal the error.
The problem is when for example I have an input with the tooltip already instantiated, I need to change the text of this tooltip because another type of error was given, then I do a destroy and reinstall the toolip.
$('#input').tooltip('destroy');
$('#input').tooltip({ title: 'texto nuevo'})
What happens when I do this, is that it only destroys the tooltip but does not create the new instance, then everything is left in nothingness.
What could I do in this case?