GitHunt
FA

ExtJS 6.x Modern TagField component

TagField

For use with ExtJS 6.x Modern

enter image description here

Usage

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'
            }
            ]
        } )
}

Author

Created by Brandon Ryall-Ortiz from Facilities Exchange

MIT License

Contribute

If you would like to contribute to the project please follow the directions below.

  1. Fork the project
  2. Make your changes and commit them
  3. Create a pull request

Languages

JavaScript100.0%

Contributors

MIT License
Created October 18, 2017
Updated November 22, 2022