ExportSelection.js
1.77 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
Ext.define('treps.controller.Export.ExportSelection', {
extend: 'Ext.app.Controller',
requires: [
'treps.controller.Export.ExportManager'
],
refs: [
{
ref: 'structureCombo',
selector: 'export_container > filestructure_panel > filestructures_combo'
},
{
ref: 'formatCombo',
selector: 'export_container > filestructure_panel > fileformats_combo'
}
],
init: function() {
var me = this;
},
initStores: function(onReady)
{
var me = this;
treps.controller.Export.ExportManager.loadFormatsStore(
function(formatsStore)
{
me.getFormatCombo().store = formatsStore;
//select first format
me.getFormatCombo().setValue(formatsStore.getAt(0).get('id'));
treps.controller.Export.ExportManager.loadStructuresStore(
function(structuresStore)
{
me.getStructureCombo().store = structuresStore;
//select first export strcture
me.getStructureCombo().setValue(structuresStore.getAt(0).get('id'));
if (onReady != null)
onReady.call(me, formatsStore, structuresStore);
});
});
},
getExportStructure: function()
{
return this.getStructureCombo().getValue();
},
setExportStructureEnabled: function(enabled)
{
this.getStructureCombo().setDisabled(!enabled);
},
getExportFormat: function()
{
return this.getFormatCombo().getValue();
},
isValid: function()
{
if ((this.getExportStructure() == null) || (this.getExportStructure() == ''))
{
treps.Messages.showError('Please select the structure of the exported file.');
return false;
}
if ((this.getExportFormat() == null) || (this.getExportFormat() == ''))
{
treps.Messages.showError('Please select the format of the exported file.');
return false;
}
return true;
}
});