{"id":20494864,"url":"https://github.com/apiko-dev/meteor-bootstrap-multi-select","last_synced_at":"2026-04-20T01:03:43.007Z","repository":{"id":88209943,"uuid":"59191300","full_name":"apiko-dev/meteor-bootstrap-multi-select","owner":"apiko-dev","description":null,"archived":false,"fork":false,"pushed_at":"2016-05-19T13:05:53.000Z","size":15,"stargazers_count":1,"open_issues_count":2,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-05T17:53:31.281Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/apiko-dev.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-05-19T09:08:30.000Z","updated_at":"2018-01-03T13:37:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"2dbbba8c-a22b-4d55-a33d-66a4a082a45d","html_url":"https://github.com/apiko-dev/meteor-bootstrap-multi-select","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/apiko-dev/meteor-bootstrap-multi-select","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apiko-dev%2Fmeteor-bootstrap-multi-select","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apiko-dev%2Fmeteor-bootstrap-multi-select/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apiko-dev%2Fmeteor-bootstrap-multi-select/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apiko-dev%2Fmeteor-bootstrap-multi-select/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apiko-dev","download_url":"https://codeload.github.com/apiko-dev/meteor-bootstrap-multi-select/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apiko-dev%2Fmeteor-bootstrap-multi-select/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32028550,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"ssl_error","status_checked_at":"2026-04-20T00:17:31.068Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-11-15T17:43:36.881Z","updated_at":"2026-04-20T01:03:42.986Z","avatar_url":"https://github.com/apiko-dev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jss:bootstrap-multi-select\n\n## Basics\nThis package is a reactive wrapper for [Bootstrap Multiselect](https://github.com/davidstutz/bootstrap-multiselect)\njQuery plugin. It produce a template with name `MultiSelect` for creating reactive dropdown select component.\n\n## How to use\nFor using multi select, you should to create a template with `MultiSelect` calling:\n\n```html\n\u003ctemplate name=\"testTemplate\"\u003e\n  {{\u003e MultiSelect id=\"options-select\" name=\"options-select\" multiple=\"multiple\" options=options selectOptions=selectOptions}}\n\u003c/template\u003e\n```\n\nand create helpers:\n\n```js\nTemplate.testTemplate.helpers({\n  options () {\n    return [\n      {\n        label: 'Option 1',\n        value: '1'\n      },\n      {\n        label: 'Option 2',\n        value: '2'\n      },\n      {\n        label: 'Option 3',\n        value: '3'\n      }\n    ];\n  },\n\n  selectOptions () {\n    return {\n      buttonClass: 'btn btn-white',\n      nonSelectedText: 'Check option',\n      onChange () {\n        // change handler\n      }\n    };\n  }\n});\n```\n\nYou should get something like this:\n\n![Example of MultiSelect](https://snag.gy/orMCTW.jpg)\n\nFor creating a group of options, your `options` helper should be rewrite:\n\n```js\noptions () {\n  return [\n    {\n      label: 'Group 1',\n      children: [\n        {\n          label: 'Option 1',\n          value: '1'\n        },\n        {\n          label: 'Option 2',\n          value: '2'\n        },\n        {\n          label: 'Option 3',\n          value: '3'\n        }\n      ]\n    },\n    {\n      label: 'Group 2',\n      children: [\n        {\n          label: 'Option 1',\n          value: '1'\n        },\n        {\n          label: 'Option 2',\n          value: '2'\n        },\n        {\n          label: 'Option 3',\n          value: '3'\n        }\n      ]\n    }\n  ];\n}\n```\n\nThe result:\n\n![Multi groups select](https://snag.gy/oplmkF.jpg)\n\nTo learn about all available select options you can [here](http://davidstutz.github.io/bootstrap-multiselect/#configuration-options).\n\nMade by [![Professional Meteor Development Studio](http://s30.postimg.org/jfno1g71p/jss_xs.png)](http://jssolutionsdev.com) - [Professional Meteor Development Company](http://jssolutionsdev.com)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapiko-dev%2Fmeteor-bootstrap-multi-select","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapiko-dev%2Fmeteor-bootstrap-multi-select","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapiko-dev%2Fmeteor-bootstrap-multi-select/lists"}