angular-selectize
angular-selectize copied to clipboard
angular-selectize
https://github.com/machineboy2045/angular-selectize/issues/116 https://github.com/machineboy2045/angular-selectize/issues/110 https://github.com/machineboy2045/angular-selectize/issues/121
There are cases where angular is used without jquery (with jqlite). If so then executing 'element.selectize()' will throw error that selectize is undefined. To fix that we should to check...
I am putting a selectize in a .cshtml file and for some reason it is not shown in the view, I inspect the element and if it is found, but...
The NPM repo still contains your v1.2.3 release. Are you planning on updating the NPM repo so it has your most recent release?
I tried to npm install this and noticed that selectize didn't come along for the ride. Hopefully this will fix that.
I need to use the select input's selected item's `text` for validation. So, I can use this either by storing both text/value in the ng-model or get the text of...
Allow the library to be require()-d from `node_modules` by specifying the main dist file in package.json. I'm not sure what the policy is around editing CHANGELOG.md, should I bump the...
It looks that in 3.0.1 something is broken. When you select an item for the first time from the dropdown, the $scope does not get digested, so any bindings will...
A similar issue was posted in brianreavis/selectize.js: (https://github.com/brianreavis/selectize.js/issues/610) So in the single select drop down, user selected '12345678' at first, then user would like to search for '12345679', and currently...
I use angular selectize with these options: ``` $rootScope.mySelectize = { allowEmptyOption: true, valueField: 'id', labelField: 'label', searchField: ['label'], maxItems: 1 }; ``` and in view: ``` ``` Problem: when...