One of the challenges I am currently facing involves implementing a tooltip on an input field. Here is my current implementation:
<input id="test" uib-tooltip="my tootip" tooltip-trigger="customEvent" ng-model="test" />
I have been attempting to display this tooltip using jQuery with the following code:
$('#test').trigger('customEvent');
However, despite my efforts, I have been unable to get it to work properly. The version of ui-bootstrap-tpls I am using is 0.14.3
In addition, I have configured the provider as follows:
app.config(['$uibTooltipProvider', function ($uibTooltipProvider) {
$uibTooltipProvider.setTriggers({
'customEvent': 'customEvent'
});
}]);
Can anyone offer insight into why this may not be functioning as expected?