Blame view

js/app/models/sharedCatalogNode.js 1.05 KB
169f14d2   Benjamin Renard   Add shared object...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/** 
 * Project  : AMDA-NG4
 * Name     : sharedCatalogNode.js
 * @class   amdaModel.sharedCatalogNode
 * @extends amdaModel.InteractiveNode
 * @brief   Basic Model of Node corresponding to a amda Shared Catalog
 * @author  
 * @version $Id: sharedCatalogNode.js 1916 2013-11-26 10:58:49Z elena $
 */

Ext.define('amdaModel.sharedCatalogNode', {

    extend: 'amdaModel.InteractiveNode',
    
    statics: {
        nodeType:   'sharedcatalog',
        objectName: 'Catalog'
    },

    constructor : function(config){	
        this.callParent(arguments);
        this.set('moduleId',myDesktopApp.dynamicModules.catalog.id);
        this.set('objectDataModel','amdaModel.Catalog');      
        if (this.get('leaf')) this.set('iconCls', 'icon-catalog');
    },
  
    localMenuItems : function() {
        var menuItems =
         [{
            fnId : 'leaf-editLeaf',
            text : 'Edit Catalog',
            hidden : true
        }];
     
        return menuItems;
    },
    
    getAllContextMenuItems: function(){

        return this.localMenuItems();
    }
});