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

angular-selectize

Results 72 angular-selectize issues
Sort by recently updated
recently updated
newest added

http://plnkr.co/edit/QuPPgg I have an option where the value is 'null' (silly I know but that is the data I have been supplied). At some point (I think in selective.js) this...

I experienced this when conditionally disabling/enabling the selectize element with Angular's `ng-show` and `ng-hide` directives. It is only working when wrapping the whole thing with a dummy `div`. See my...

Hi! Thanks for the module again! So I have a Movie model that has _id, name, rating, etc. When I have some pre-populated values i.e. ``` vm.selectedMovies = [{_id: '1',...

Hi, I want to use your directive in a repeat. But in that repeat I use different entities and model that I need to alter or update. This is the...

Since we don't use the `load()` method for angular-selectize, how should we set the component to be in a loading state? For vanilla selectize, if you use the load() method,...

Fixing the detection logic for OnChange and UpdateSelectize for single and multi item scenarios. Fixing JsHint errors. Throw error if Selectize library is not loaded before our angular module. This...

When setting a placeholder as a string, everything work as expected but when setting a placeholder using a scoped variable, the placeholder is evaluated for the select DOM element but...

Doing so can sometimes result in an infinite digest loop. This way, only value and label keys are taken into account.

The reference to $scope.options was being overwritten. This saves what's returned from the generateOptions function and pushes it to an emptied scope.options while keeping its reference. Resolves #63

I'm attempting to do some $dirty logic on my form. It looks like angular is marking the selectize as dirty even though I've not interacted with it yet. Here is...