
Security News
New CNA Scorecard Tool Ranks CVE Data Quality Across the Ecosystem
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
handsontable-multi-select
Advanced tools
Handsontable editor and renderer for multi-select cells
Handsontable editor and renderer for a multi select input using chosen.js, no jQuery.
WARNING: all 0.x.x versions are refering to old versions of handsontable. If you have the newest version, please refer to latest 1.x.x.
yarn add handsontable-multi-select
Just import the editor class and renderer function from handsontable-multi-select package, and you're good to go.
Options can be passed as an array or as a callback function as below.
import { MultiSelectEditor, MultiSelectRenderer } from 'handsontable-multi-select'
import 'handsontable-multi-select/dist/css/handsontable-multi-select.css'
new Handsontable(el, {
...,
columns: [
{
editor: MultiSelectEditor,
renderer: MultiSelectRenderer,
readOnly: false,
select: {
config: {
separator: ';',
valueKey: 'value',
labelKey: 'label'
},
options: [
{ value: 'SE', label: 'Sweden' },
...
]
--- OR ---
options (source, process) {
return new Promise((resolve) => setTimeout(resolve, 500, [ ... ]))
}
}
}
]
})
We also provide default styles for the selector in CSS and LESS that are adapted to handsontable.
handsontable-multi-select/dist/css/handsontable-multi-select.css
or handsontable-multi-select/lib/multi-select.less
You can view a demo of the plugin by cloning this repository and yarn demo
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
FAQs
Handsontable editor and renderer for multi-select cells
The npm package handsontable-multi-select receives a total of 1,962 weekly downloads. As such, handsontable-multi-select popularity was classified as popular.
We found that handsontable-multi-select demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.