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
|
Ext.namespace('Zarafa.plugins.files.ui.dialogs');
/**
* @class Zarafa.plugins.files.ui.dialogs.SaveToFilesContentPanel
* @extends Zarafa.core.ui.ContentPanel
* @xtype filesplugin.savetofilescontentpanel
*
* This content panel contains the upload panel for storing files to the backend.
*/
Zarafa.plugins.files.ui.dialogs.SaveToFilesContentPanel = Ext.extend(Zarafa.core.ui.ContentPanel, {
/**
* @constructor
* @param config
*/
constructor: function (config) {
config = config || {};
Ext.applyIf(config, {
layout : 'fit',
title : dgettext('plugin_files', 'Add item to Files'),
closeOnSave: true,
width : 400,
height : 300,
items: [{
xtype : 'filesplugin.savetofilestreepanel',
ref : 'treePanel',
response: config.record
}]
});
Zarafa.plugins.files.ui.dialogs.SaveToFilesContentPanel.superclass.constructor.call(this, config);
}
});
Ext.reg('filesplugin.savetofilescontentpanel', Zarafa.plugins.files.ui.dialogs.SaveToFilesContentPanel);
|