md-form-builder
Version:
AngularJS - Material Design - Form Builder
33 lines (28 loc) • 779 B
JavaScript
var skipLogic = require('../utils/skipLogic')()
module.exports = function ($compile) {
return {
restrict: 'E',
replace: true,
templateUrl: 'mdfbSelectSearch.html',
scope: {
field: '=',
form: '=',
globals: '='
},
link: function (scope, elem, attrs) {
scope.field.show = true
if (scope.field.skipLogic) {
skipLogic.init(scope, elem, attrs, scope.field)
}
scope.clearSearchTerm = function () {
scope.searchTerm = ''
}
// The md-select directive eats keydown events for some quick select
// logic. Since we have a search input here, we don't need that logic.
elem.find('input').on('keydown', function (ev) {
ev.stopPropagation()
})
}
}
}