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
|
Ext.namespace('Zarafa.plugins.files.data');
/**
* @class Zarafa.plugins.files.data.Views
* @extends Zarafa.core.Enum
*
* Enum containing the different views of the files context.
*
* @singleton
*/
Zarafa.plugins.files.data.Views = Zarafa.core.Enum.create({
/**
* View all files items from the selected folder(s) in the 'list' view.
*
* @property
* @type Number
*/
LIST: 0,
/**
* View all files items from the selected folder(s) in the 'icon' view.
*
* @property
* @type Number
*/
ICON: 1
});
|