I'm using tooltips for the error explanation and coloring to indicate errors. On my datepicker fields, I have some validations about date range that I need to show. However if I try to put the datepicker and the tooltip on the same input element I get
Multiple directives [datepickerPopup, tooltipHtmlUnsafe] asking for new/isolated scope on: <input
This wasn't a problem until I "upgraded" to angular-bootstrap from the old version that used the bootstrapjs code to deal with the tooltips.
Is there some easy way I can use the focus on the datepicker input to cause the tooltip to pop, even when the input field can't get the tooltip directive?
Right now I have it as a hover on the label which is about as obvious as a subliminal message on your TV.
I have a field directive with an isolate scope that covers the input and the label associated with it, so that is the kind of context I have to work with.