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
|
Ext.namespace('Zarafa.plugins.files.ui.dialogs');
/**
* @class Zarafa.plugins.files.ui.dialogs.CreateFolderContentPanel
* @extends Zarafa.core.ui.ContentPanel
* @xtype filesplugin.createfoldercontentpanel
*
* This content panel contains the files tree panel for create new folder in that.
*/
Zarafa.plugins.files.ui.dialogs.CreateFolderContentPanel = Ext.extend(Zarafa.core.ui.ContentPanel, {
/**
* @constructor
* @param config Configuration structure
*/
constructor : function(config)
{
config = config || {};
Ext.applyIf(config, {
xtype : 'zarafa.createfoldercontentpanel',
layout: 'fit',
title : dgettext('plugin_files', 'Create New Folder'),
width: 300,
height: 350,
items: [{
xtype: 'filesplugin.createfolderpanel',
accountFilter : config.accountFilter,
selectedFolderId : config.selectedFolderId,
store : config.store
}]
});
Zarafa.plugins.files.ui.dialogs.CreateFolderContentPanel.superclass.constructor.call(this, config);
}
});
Ext.reg('filesplugin.createfoldercontentpanel', Zarafa.plugins.files.ui.dialogs.CreateFolderContentPanel);
|