ng-selectize icon indicating copy to clipboard operation
ng-selectize copied to clipboard

AngularJS directive for Selectize.js

Results 11 ng-selectize issues
Sort by recently updated
recently updated
newest added

I using AngularJS lasted version(1.7.5). I try implement ng selectize but i have problem: > auto clear become {"value":null} on change select. Please help me...

When I select an options in a selectize field, my browser is down, because of the infinite loop which is caused by your code. After 15 minutes of debugging I...

How to map string array to ng selectize data. One solution is to add extra mapping like: ``` var items = data.map(function(x) { return { item: x }; }); $('#input-tags').selectize({...

If variable with options reloaded, now it add this options to list. But we need replace them

enhancement

Hi guys, I didn't use ng in production anymore, so maybe someone wants to be owner of this repo? cc @yakovkhalinsky

On init multiselect input I got that. It's `setSelectizeOptions(newOptions)` where newOptions is undefined. ``` TypeError: Cannot read property 'value' of undefined at a.extend.registerOption (https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.1/js/standalone/selectize.min.js:2:24727) at a.extend.addOption (https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.1/js/standalone/selectize.min.js:2:24603) at setSelectizeOptions (http://localhost:8003/static/musicbit/js/ng-selectize-0.0.6.js:116:21)...

Hey! I have a problem with adding optgroup functionality. It's not showing when clicking on select. My config looks like this: ``` $scope.tests = [{id: 1, name: 'one', parent: 'first'},...

I'd like to filter the listed options from ng-selectize. For a "normal" `` I do it like this: ``` javascript $scope.objects = [ ... ]; $scope.myFilters = {type:'tv', country:'Austria'}; ```...