Blame view

js/app/models/SpecialParamNode.js 1.17 KB
b0f72ee0   Erdogan Furkan   #10557 For now
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
43
44
45
46
47
48
49
50
51
52
53
/** 
 * Project  : AMDA-NG4
 * Name     : SpecialParamNode.js
 * @class   amdaModel.SpecialParamNode
 * @extends amdaModel.InteractiveNode
 * @brief    
 * @author  
 * @version $Id: MyDataNode.js 2267 2014-04-03 10:13:16Z elena $
 * @todo
 *******************************************************************************
 *    FT Id     :   Date   : Name - Description
 *******************************************************************************
 * 
 */

Ext.define('amdaModel.SpecialParamNode', {
  
    extend: 'amdaModel.InteractiveNode',
    
    statics:{
        nodeType: 'specialParam'
    },
    
    fields: 
    [
    ],
    
    dependentRootNodeId :  'specialParam-treeRootNode',
    
    constructor : function(config){
        this.callParent(arguments);
    },
       
    localMenuItems : function() {
        var menuItems =
            [];     
        return menuItems;
    },

    getAllContextMenuItems: function(){

       // var menuItems = this.allMenuItems('File');
        var locMenuItems = this.localMenuItems();

       // return  Ext.Array.merge(menuItems,locMenuItems);
	 return locMenuItems;
    },

    onMenuItemClick : function(menu,item,event) {

    },

});