Blame view

js/app/models/Catalog.js 1.23 KB
f792a3de   elena   catalog ihm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Project      : AMDA-NG
 * Name         : Catalog.js 
 * Description  : Catalog Object Definition
 * @class amdaModel.Catalog
 * @extends amdaModel.TimeTable 
 * @author  elena
 */

  

Ext.define('amdaModel.Catalog', {
	
    extend: 'amdaModel.TimeTable',
    
    fields : [
d18b535d   elena   catalog draft + c...
17
	      { name: 'parameters' }                        
f792a3de   elena   catalog ihm
18
19
20
21
22
23
24
25
	],
    
    getJsonValues : function (hasId) {
    	var values  = new Object();	    
    	if (hasId) {
    		values.id = this.get('id');
    	}
    	
d18b535d   elena   catalog draft + c...
26
	values.timesrc =   this.get('timesrc');
f792a3de   elena   catalog ihm
27
28
29
30
31
32
33
34
35
36
37
38
39
40
    	values.name = this.get('name');
    	values.created = this.get('created');
	
    	if (this.get('description').match(/[a-z,0-9]/gi) != null) {
    		values.description = this.get('description');
    	}
//     	if (this.get('history').match(/[a-z,0-9]/gi) != null) {
//     		values.history = this.get('history');
//     	}
    	values.objName = this.get('objName');
    	values.objFormat = this.get('objFormat');
        values.folderId = this.get('folderId');
    	values.nbIntervals = this.get('nbIntervals');
    	values.cacheToken = this.get('cacheToken');
d18b535d   elena   catalog draft + c...
41
   	values.parameters = this.get('parameters');
f792a3de   elena   catalog ihm
42
43
44
45
46
47
48
49
    	values.leaf = true;
    	values.nodeType = amdaModel.CatalogNode.nodeType;
    	return values;
    }
	
	
 
});