
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
can-search-select
Advanced tools
CanJS component for a dropdown select with a search
To try out the demo open demo.html
file in browser.
Your page template can look like this:
<can-import from="can-search-select" />
<can-search-select {items}="items"
filter-prop-name="companyName"
{format}="@format"
{format-input}="@formatInput"
{^selected-item}="selectedItem" />
Your view model can look like this:
const vm = new DefineMap({
selectedItem: null,
items: [{
companyName: 'Alphabet',
issuanceName: 'Preferred Series A',
price: '1,494'
}],
format (item) {
return item.companyName + ', ' + item.issuanceName + ', price: ' + item.price;
},
formatInput (item) {
return item.companyName;
}
})
There is also a simple dropdown select without a search:
<can-import from="can-search-select/can-select" />
<can-select {items}="items"
display-prop-name="companyName"
{^selected-item}="selectedItem" />
Main props:
items
, a list of source items;selected-item
, the selected item, can also be used for preselection;filter-prop-name
, string, a property name to search against;format
, a function that receives the selected item and returns a value for rendering in the input, default will use filterPropName
or the item itself;format-input
, a function to format the input field value.Customization options:
placeholder-search
, default Enter to Search...
;placeholder-select
, default Choose From the List
;btnClass
, default caret
(for TwBootstrap caret).Simple dropdown select:
items
, a list of source items;selected-item
, the selected item, can also be used for preselection;filter-prop-name
, string, a property name to use for displaying.With StealJS, you can import this module directly in a template that is autorendered:
import 'can-search-select';
Use require
to load can-search-select
and everything else
needed to create a template that uses can-search-select
:
require("can-search-select");
Load the global
version of the plugin:
<script src='./node_modules/can-search-select/dist/global/can-search-select.js'></script>
0.3.0
:
can-select
component.0.2.2
:
format-input
param.0.2.1
:
selectedItem
for preselection.0.2.0
:
FAQs
Dropdown select component with a search option
The npm package can-search-select receives a total of 214 weekly downloads. As such, can-search-select popularity was classified as not popular.
We found that can-search-select demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.