+ handle-item-selected="handleEventSelected(datum)" clear-value="clearCounter">
@@ -37,7 +37,7 @@
Then issue a: |
+ handle-item-selected="handleMethodSelected(datum)" clear-value="clearCounter">
diff --git a/static/directives/entity-search.html b/static/directives/entity-search.html
index 81722ece2..fec00b393 100644
--- a/static/directives/entity-search.html
+++ b/static/directives/entity-search.html
@@ -11,6 +11,29 @@
+
+
diff --git a/static/js/app.js b/static/js/app.js
index 5908036f0..91a7511f1 100644
--- a/static/js/app.js
+++ b/static/js/app.js
@@ -3985,7 +3985,9 @@ quayApp.directive('dropdownSelect', function ($compile) {
'placeholder': '=placeholder',
'lookaheadItems': '=lookaheadItems',
'handleItemSelected': '&handleItemSelected',
- 'handleInput': '&handleInput'
+ 'handleInput': '&handleInput',
+
+ 'clearValue': '=clearValue'
},
controller: function($scope, $element, $rootScope) {
if (!$rootScope.__dropdownSelectCounter) {
@@ -3998,6 +4000,13 @@ quayApp.directive('dropdownSelect', function ($compile) {
// Setup lookahead.
var input = $($element).find('.lookahead-input');
+ $scope.$watch('clearValue', function(cv) {
+ if (cv) {
+ $scope.selectedItem = null;
+ $(input).val('');
+ }
+ });
+
$scope.$watch('selectedItem', function(item) {
if ($scope.selectedItem == $scope.internalItem) {
// The item has already been set due to an internal action.
@@ -4743,6 +4752,7 @@ quayApp.directive('createExternalNotificationDialog', function () {
$scope.currentMethod = null;
$scope.creating = false;
$scope.currentConfig = {};
+ $scope.clearCounter = 0;
$scope.events = ExternalNotificationData.getSupportedEvents();
$scope.methods = ExternalNotificationData.getSupportedMethods();
@@ -4777,6 +4787,7 @@ quayApp.directive('createExternalNotificationDialog', function () {
$scope.$watch('counter', function(counter) {
if (counter) {
+ $scope.clearCounter++;
$scope.creating = false;
$scope.currentEvent = null;
$scope.currentMethod = null;
|