mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-25 18:59:38 +00:00
add the columntreeview to the files tab
This commit is contained in:
parent
3de1da44a0
commit
34c91448cd
@ -27,6 +27,38 @@ Deluge.Add = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Deluge.Add.Files = new Ext.tree.ColumnTree({
|
||||||
|
id: 'files',
|
||||||
|
layout: 'fit',
|
||||||
|
rootVisible: false,
|
||||||
|
autoScroll: true,
|
||||||
|
height: 200,
|
||||||
|
border: false,
|
||||||
|
|
||||||
|
columns: [{
|
||||||
|
width: 40,
|
||||||
|
dataIndex: 'enabled'
|
||||||
|
},{
|
||||||
|
header: _('Filename'),
|
||||||
|
width: 250,
|
||||||
|
dataIndex: 'filename'
|
||||||
|
},{
|
||||||
|
header: _('Size'),
|
||||||
|
width: 80,
|
||||||
|
dataIndex: 'size'
|
||||||
|
}],
|
||||||
|
|
||||||
|
loader: new Deluge.FilesTreeLoader({
|
||||||
|
uiProviders: {
|
||||||
|
'col': Ext.tree.ColumnNodeUI
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
|
||||||
|
root: new Ext.tree.AsyncTreeNode({
|
||||||
|
text:'Tasks'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
Deluge.Add.Store = new Ext.data.SimpleStore({
|
Deluge.Add.Store = new Ext.data.SimpleStore({
|
||||||
fields: [
|
fields: [
|
||||||
{name: 'torrent', mapping: 1}
|
{name: 'torrent', mapping: 1}
|
||||||
@ -84,7 +116,8 @@ Deluge.Add.Options = new Ext.TabPanel({
|
|||||||
height: 200,
|
height: 200,
|
||||||
items: [{
|
items: [{
|
||||||
id: 'files',
|
id: 'files',
|
||||||
title: _('Files')
|
title: _('Files'),
|
||||||
|
items: [Deluge.Add.Files]
|
||||||
},{
|
},{
|
||||||
id: 'options',
|
id: 'options',
|
||||||
title: _('Options')
|
title: _('Options')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user