Newer
Older
/**
* AreaWindow Control
* List of the areas which are available
*
* @author www.pcsg.de (Henning Leutz)
*
* @event onSubmit [ this, areas ]
*/
'Ajax',
'Locale'
], function(QUI, QUIConfirm, Area, Ajax, QUILocale)
{
"use strict";
return new Class({
Extends : QUIConfirm,
projectName : false,
projectLang : false,
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
82
83
84
85
86
maxHeight : 500,
maxWidth : 400
},
initialize : function(options)
{
this.parent( options );
this.addEvents({
onOpen : this.$onOpen
});
},
/**
* event : on open
*/
$onOpen : function()
{
var self = this;
this.Loader.show();
this.getList(function(result)
{
var i, len, desc, title;
var Content = self.getContent();
for ( i = 0, len = result.length; i < len; i++ )
{
title = result[ i ].title;
desc = result[ i ].description;
new Area({
title : QUILocale.get( title.group, title['var'] ),
description : QUILocale.get( desc.group, desc['var'] ),
area : result[ i ].name
}).inject( Content );
}
self.Loader.hide();
});
},
/**
* Return the areas of the project
*
* @param {Function} callback
*/
getList : function(callback)
{
Ajax.get('package_quiqqer_bricks_ajax_project_getAreas', callback, {
'package' : 'quiqqer/brick',
name : this.getAttribute( 'projectName' ),
lang : this.getAttribute( 'projectLang' )
})
});
},
/**
* Submit the window
*/
submit : function()
{
var Content = this.getContent();
var areas = Content.getElements(