Every line of 'ng-select in angularjs' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
50 link($scope, element, attrs) { 51 // defines property name 52 $scope.selectName = attrs.cheName; 53 54 55 // defines the first element as selected 56 if ($scope.$parent.$first) { 57 $scope.$parent.$parent[attrs.cheName + '.selecterSelected'] = attrs.cheTitle; 58 } 59 60 61 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
563 function ngSelectFactory(): NgSelectComponent { 564 return new NgSelectComponent(null, null, new NgSelectConfig(), () => new DefaultSelectionModel(), {} as any, null, null); 565 }
212 select: function select(index) { 213 var _this = this; 214 215 if (this.suggestions && this.suggestions[index]) { 216 this.$emit('input', this.suggestions[index].value); 217 this.$emit('select', this.suggestions[index]); 218 this.$nextTick(function () { 219 _this.hideSuggestions(); 220 }); 221 } 222 },
217 ngAfterViewInit(): void { 218 this._cd.detectChanges(); 219 }
85 function NgSelectOption(_element, _renderer, _select) { 86 this._element = _element; 87 this._renderer = _renderer; 88 this._select = _select; 89 if (lang_1.isPresent(this._select)) 90 this.id = this._select._registerOption(); 91 }
170 select(): void { 171 if (!this._isDisabled && this._selectionService.isEnabled) { 172 this._selectionService.strategy.select(this.uxSelectionItem); 173 } 174 }
22 select() { 23 this.selected = true; 24 }
51 function viewTreeSelectDirectiveController($filter, $log, $state, $scope, $rootScope, $q, $uibModal, ngToast, webvellaCoreService,$timeout) { 52 53 $scope.isRecordSelected = function (nodeRecordId) { 54 return $scope.selectedTreeRecords.indexOf(nodeRecordId) > -1 55 } 56 57 $scope.isNodeSelectable = function (nodeId) { 58 return $scope.selectableNodeIds.indexOf(nodeId) > -1 59 } 60 61 $scope.isNodeCollapsed = function (nodeId) { 62 return $scope.collapsedTreeNodes.indexOf(nodeId) > -1 63 } 64 65 $scope.attachHoverEffectClass = {}; 66 67 $scope.toggleNodeSelected = function (node) { 68 if ($scope.isNodeSelectable(node.id) || $scope.isRecordSelected(node.recordId)) { 69 $timeout(function(){ 70 $rootScope.$emit("webvellaAdmin-toggleTreeNode-selected", node); 71 },0); 72 } 73 } 74 75 $scope.toggleNodeCollapse = function (node) { 76 $timeout(function(){ 77 $rootScope.$emit("webvellaAdmin-toggleTreeNode-collapsed", node); 78 },0); 79 } 80 81 82 }
99 ngAfterViewInit() { 100 this.updateState(); 101 }
36 public get ngModelChange() { 37 return this.selectedOptionChange; 38 }