angularjs-dropdown-multiselect icon indicating copy to clipboard operation
angularjs-dropdown-multiselect copied to clipboard

AngularJS Dropdown Multiselect

Results 100 angularjs-dropdown-multiselect issues
Sort by recently updated
recently updated
newest added

I solved this problem by adding a parameter in setting `$scope.settings.closeOnDeselectAll` false by default and in the end of function `$scope.deselectAll` I do : `if($scope.settings.closeOnDeselectAll) $scope.close(); ` it's easy but...

I've been trying to figure out how to get a method to be called **after** an option has been selected in the dropdown. All the events available (onItemSelect, onItemDeselect, onSelectionChanged,...

i want to add a button in my drop down option there is none of the functionality available to handle this

I currently have this settings for my dropdown: ``` $scope.attachDropdownSettings = { enableSearch: true, showCheckAll: false, showUncheckAll: false, displayProp: 'name', scrollable: true, scrollableHeight: 250, idProperty: 'id', }; ``` I need...

Hi there, I wanted your multiselect to be able to take advantage of built-in Angular forms functionality like $dirty and $pristine states, validation, and whatnot, so I made your directive...

This PR adds watching for changes in `translationTexts` so it will be possible to change them without page reload. For example when user click to change the language.

You state this requires "Angular >=1.5" however your bower.json says "~1.5", which means ">=1.5" and "=1.5"

in version 2, when selection limited to 1 (single select), i'm changing selection from option to option, an event for item selected is fired, but not for item deselected. i...

Can $event be added to onClose so that the source element can be used in the callback? My use case is that I need to check if the element's Id...

The calculation that truncates the button text to fit the available space (in function getButtonText) assumes that the whole offsetWidth of the parent element is available for the button. But...