2016-11-10 74 views
2

我在我的應用程序中使用了Angular Tooltip,並希望觸發焦點問題的工具提示,但遇到觸發此問題的問題。它適用於mouseovermouseleave,但在focus事件中不起作用。關注焦點的角度工具提示

這裏是我使用它如何

<input type="password" tooltip-show-trigger="focus" tooltips tooltip-template="Password must include at least one upper case letter, one lower case letter, one numeric digit and one special character." id="Password" name="Password" class="form-control" placeholder="New Password" required autofocus ng-model="Password" /> 

我不知道我做錯了或失去了一些東西。任何形式的幫助將不勝感激。

+0

我從來沒有使用這種依賴關係,但既然你有角度,你不能手動觸發'ng-click'事件的工具提示嗎?所以當你點擊你的輸入時,它會觸發一個自定義函數來調用你的工具提示。 – trichetriche

+0

但重點可以與選項卡或進入導航..在這種情況下,ng點擊將無法正常工作 –

回答

4

它可以幫助別人......

focus是不觸發焦點角度提示實際的事件。根據this issue discussion,它實際上是focusinfocusout。它解決了我的問題。

tooltip-show-trigger="focusin" tooltip-hide-trigger="focusout" 
相關問題