Description :
Its a group of Polymer
elements for tyeahead, selecting tags and showing tags.
- Install using bower:
bower install yolap
- Import
yolap.html
to import all Yolap Polymer elements.
Yolap have two categories of elements, i.e tag viewers and removers
and tag creators
.
- Tag viewers and removers. Every tags views have a unique tag creator linked with it. It gets all added tags from it and displays. You can remove tags via remove action. Example:
<yolap-view-tags icon='close' from='<some creators id>'></yolap-view-tags>
- Tag creators These elemnents need an array of items from which tags will be selected. It takes a query as input and display a list of matched item. It have a filter attribute that allows control over match with input query. Example:
<yolap-click-addtag id='in' filters='null'></yolap-click-addtag>
Feed the list of data that need to be displayed.
document.querySelector('#in').data = [{
name: 'India'
},{
name: 'Indiana'
},{
name: 'Maharastra'
}]