For use with ExtJS 6.x Modern
Download the class and include it somewhere in your app.
Simple Use Case:
{
xtype: 'tagfield',
multiSelect: true,
displayField: 'name',
valueField: 'id',
label: 'Test Field',
store: Ext.create( 'Ext.data.Store', {
data: [
{
id: 1,
name: 'Sally'
},
{
id: 2,
name: 'Booger'
},
{
id: 3,
name: 'Brando'
}
]
} )
}
Created by Brandon Ryall-Ortiz from Facilities Exchange
MIT License
If you would like to contribute to the project please follow the directions below.
- Fork the project
- Make your changes and commit them
- Create a pull request