Socket
Socket
Sign inDemoInstall

data-selector

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    data-selector

Dropdown component of data selecting


Version published
Weekly downloads
6
decreased by-40%
Maintainers
1
Install size
61.1 kB
Created
Weekly downloads
 

Readme

Source

data-selector

Dropdown component of data selecting

Usage

html

<input type="text" data-id="data-selector">

js
	var ds = new dataSelector({
		template: '<span>%:name%</span> - <span>[[%:gender%]]</span>',
		data: [
			{
				name: "Henry",
				age: 25
			},
			{
				name: "Chris",
				age: 25
			}
		]
	})

Configuration

  • el: the element of DOM node to initialize the plugin
  • template: used to display result list. %:key% can be used to be placeholder, it will be replaced by the value in data. [[placeholder]] can also be used to identify the highlight value. e.g. template: '[[%:name%]]' - %:age%. This option is required.
  • data: all data to be filtered. This option is required.
  • maxData: limit the number of selected item, -1 is default and means no limitation.
  • maxResult: number of items in result list, default value is 5.
  • resultScroll: the list can be scrolled or not, default value is false.
  • filterKey: key for filter
  • savedKey: key for saving selected item. Only one key can be supported. If an array is setting, it will only use the first value as savedKey.
  • showKey: key for display selected item
  • onSelect: callback function when click item in result list

Useful Methods

	var ds = new dataSelector();
	ds.setValue(arr)
	ds.getValue()
	ds.setData()
	ds.appendValue(arr)
	ds.clear()
	ds.destroy()
	ds.reset()

Changelog

v1.2.0

  • Support multiple instances at same time.
  • Remove some useless global variables.

v1.1.0

  • Add API: setData

Keywords

FAQs

Last updated on 29 Apr 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc