{"id":17647766,"url":"https://github.com/moshfeu/multi-select-angularjs","last_synced_at":"2025-05-07T04:25:15.617Z","repository":{"id":57305089,"uuid":"64299697","full_name":"moshfeu/multi-select-angularjs","owner":"moshfeu","description":"AngularJS directive for the \"multi-select\" jQuery plugin","archived":false,"fork":false,"pushed_at":"2020-06-18T16:52:40.000Z","size":26,"stargazers_count":5,"open_issues_count":0,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-02T04:42:32.201Z","etag":null,"topics":["angularjs","angularjs-directives","jquery","multi-select"],"latest_commit_sha":null,"homepage":"https://moshfeu.github.io/multi-select-angularjs","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moshfeu.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-07-27T10:30:20.000Z","updated_at":"2020-06-18T16:52:39.000Z","dependencies_parsed_at":"2022-09-20T20:52:01.282Z","dependency_job_id":null,"html_url":"https://github.com/moshfeu/multi-select-angularjs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moshfeu%2Fmulti-select-angularjs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moshfeu%2Fmulti-select-angularjs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moshfeu%2Fmulti-select-angularjs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moshfeu%2Fmulti-select-angularjs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moshfeu","download_url":"https://codeload.github.com/moshfeu/multi-select-angularjs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252811736,"owners_count":21808003,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angularjs","angularjs-directives","jquery","multi-select"],"created_at":"2024-10-23T11:14:26.460Z","updated_at":"2025-05-07T04:25:15.595Z","avatar_url":"https://github.com/moshfeu.png","language":null,"readme":"[![https://nodei.co/npm/multi-select-angularjs.png?downloads=true\u0026downloadRank=true\u0026stars=true](https://nodei.co/npm/multi-select-angularjs.png?downloads=true\u0026downloadRank=true\u0026stars=true)](https://www.npmjs.com/package/multi-select-angularjs)\n\n\n[![HitCount](https://hits.dwyl.com/moshfeu/multi-select-angularjs.svg)](https://hits.dwyl.com/dwyl/start-here)\n[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/moshfeu/multi-select-angularjs/issues)\n\n\nAn AngularJS directive for the plugin [multi-select](https://github.com/lou/multi-select)\n\n__Table of content__\n\n- [Demo](#demo)\n- [Depenecies](#depenecies)\n- [Installation](#installation)\n- [Options / Events](#options--events)\n- [Contributors](#contributors)\n- [License](#license)\n\n## Demo\n\n\u003ca href=\"https://moshfeu.github.io/multi-select-angularjs/demo/\" target=\"_blank\"\u003eDemo\u003c/a\u003e\n\n## Depenecies\n\n- jQuery 1.8+\n- angularjs\n- jquery.multi-select.js\n\n### Optional\n\n- jquery.quicksearch.js ([docs](http://loudev.com/) - find the title `Searchable`)\n\n## Installation\n\n```shell\nnpm install multi-select-angularjs --save\n```\n\n```html\n\u003clink href=\"node_modules/multiselect/css/multi-select.css\" rel=\"stylesheet\" /\u003e\n\n\u003cscript src=\"node_modules/jquery/dist/jquery.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"node_modules/angular/angular.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"node_modules/multiselect/js/jquery.multi-select.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"node_modules/jquery.quicksearch/dist/jquery.quicksearch.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"node_modules/multi-select-angularjs/dist/angular.multi-select.js\"\u003e\u003c/script\u003e\n```\n\n\n## Usage\n\n**javascript**\n```javascript\napp.module('your-modoule', ['jq-multi-select']);\n```\n**html**\n```html\n\u003cselect multiple data-ng-options=\"option as option for option in options\" data-ng-model=\"selectedOptions\" data-multi-select=\"options\"\u003e\u003c/select\u003e\n```\n\u003chr /\u003e\n\n## Options / Events\n\nPass the options ([docs](http://loudev.com/) - find the title `options`) object into `ms-options` attribute.\n\n**javascript**\n```javascript\n$scope.msOptions = {\n    afterInit: function (container) {\n        console.log('afterInit');\n    }\n};\n```\n**html**\n```html\n\u003cselect multiple data-ng-options=\"option as option for option in options\" data-ng-model=\"selectedOptions3\" data-multi-select=\"options\" data-ms-options=\"msOptions2\"\u003e\u003c/select\u003e\n```\n\n## Contributors\n[@bigtree6688](https://github.com/bigtree6688)\n[@flycal6](https://github.com/flycal6)\n\n## License\n[MIT](http://opensource.org/licenses/MIT) License.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoshfeu%2Fmulti-select-angularjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoshfeu%2Fmulti-select-angularjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoshfeu%2Fmulti-select-angularjs/lists"}