ui-select2
ui-select2 copied to clipboard
AngularJS wrapper for select2 (deprecated, use angular-ui/ui-select)
I am using `angular-ui-select` for dropdowns. I need to have dropdown that you can cancel. Here is my dropdown in template: ``` {{type}} ``` Here is `select2Options`: ``` $rootScope.select2Options =...
In html: ``` html ``` In js: ``` js $scope.selectedValue = 4; // we set the value to an integer $scope.$watch('selectedValue', function() { // this is fired twice }); ```...
Previously was calling .select2() before element was even rendered.
select ng-model="xxx" ng-init="" ng-options="x for xx in xxx" /select
Can you please help in how to use ui-select2 typeahead functionality that loads on user typing on text box. I am not able to use the transport property
I have this html code ``` {{Item.CotoNombre}} iPhone 4 iPhone 5 iPhone 6 ``` and this is my Controller with ui-select2 function: ``` 'use strict'; app.controller('AppController', function($scope, $controller, $rootScope, $state,...
I'll break my problem down, and hopefully someone here can offer a solution. The Requirements: 1. I need a dropdown that is compatible with AngularJS, and Bootstrap - Select2 looks...
Currently I don't think there's a way to programmatically / declaratively set the focus to a select2 instance on some event or from inside a watch function, so you have...
Hi, Sorry but can't seem to find how to select(click) a item that has been selected. I have my list, I select an item, then it displays as it should,...
Is there anything I need to consider while wrapping `ui-select2` inside a custom directive? I am trying to set the `select2Options` in the `link` function but those settings never get...