我已经定义了一个如下的集合视图
HexGridNonEditableCollectionView = Backbone.Marionette.CollectionView.extend({
                itemView : HexGridNonEditableItemView,
                tagName : 'tr',
                className : 'hexgrid-view'
            });
通过为上述集合视图创建实例,我在其他布局中使用此集合视图
现在我想添加或删除在我为 CollectionView 创建实例的布局中的 collectionview 中指定的 className。
这个怎么做。