我有一個輸入字段,它具有uib-popover控件。我遵循了關於如何讓指令打開的文檔,但我注意到文檔中的一些差異,以及這裏的關於plnker和SO問題的示例。如何讓輸入字段的焦點改變時打開或關閉uib-popover
在我的HMTL我已經設置了輸入如下:
<div class="form-group col-xs-6 col-sm-6 col-md-6 col-lg-6">
<label>Password</label><input type="{{user.inputType}}" ng-blur="user.validatePassword(user.newUser.password, user.newUser.confirmPassword)" placeholder="Enter Password" id="password" required class="form-control" ng-model="user.newUser.password" uib-popover-template="'myPopoverTemplate.html'" uib-popover-trigger="'focus'"/>
</div>
<div class="form-group col-xs-6 col-sm-6 col-md-6 col-lg-6">
<label>Confirm Password</label>
<input type="{{user.inputType}}" ng-keyup="user.validatePassword(user.newUser.password, user.newUser.confirmPassword)" placeholder="Confirm Password" id="confirmPassword" required class="form-control" ng-model="user.newUser.confirmPassword"/>
<span style="color: red">{{user.message}}</span>
</div>
大多數實例,以及對這裏的SO問題,使用的是舊庫的屬性不與uib-開頭*。
此代碼/指令目前正常工作並呈現,但只有在單擊字段後再單擊相同字段才能關閉彈出窗口時才起作用或顯示。我已嘗試focus
觸發器和oustsideClick
觸發器。除非在字段中單擊,否則兩者都具有不渲染或關閉彈出窗口的相同結果。
版本中使用的框架是:
- angularjs 1.5.8
- UI,引導1.3.3
改變觸發匹配前面的例子中popover-trigger
用於對uib-popover-trigger
使用禁用彈出式菜單 我有created a working plunker,它演示了正在發生的事情。
任何有關我缺少的或我需要更改的建議。
在此先感謝