Important

We are updating the images for OroCommerce version 6.1 to align with the latest changes in the back-office design. During this transition, some images may still show older versions. Thank you for your patience as we work to update all visuals to reflect these changes.

TagsView ⇐ BaseView 

Tags view, able to handle tags array in model.

Usage sample:

var tagsView = new TagsView({
    model: new Backbone.Model({
        tags: [
            {id: 1, name: 'tag1'},
            {id: 2, name: 'tag2'},
            // ...
        ]
    }),
    fieldName: 'tags', // should match tags field name in model
    autoRender: true
});

Extends: BaseView