DataStoreConfig.js: new widget
This commit is contained in:
parent
864e85f4ff
commit
d85facd1d2
81
www/DataStoreConfig.js
Normal file
81
www/DataStoreConfig.js
Normal file
@ -0,0 +1,81 @@
|
||||
Ext.define('pbs-data-store-config', {
|
||||
extend: 'Ext.data.Model',
|
||||
fields: [ 'name', 'path', 'comment' ],
|
||||
proxy: {
|
||||
type: 'proxmox',
|
||||
url: "/api2/json/config/datastore"
|
||||
},
|
||||
idProperty: 'name'
|
||||
});
|
||||
|
||||
Ext.define('PBS.DataStoreConfig', {
|
||||
extend: 'Ext.grid.GridPanel',
|
||||
alias: 'widget.pbsDataStoreConfig',
|
||||
|
||||
initComponent : function() {
|
||||
var me = this;
|
||||
|
||||
var store = new Ext.data.Store({
|
||||
model: 'pbs-data-store-config',
|
||||
sorters: 'name',
|
||||
});
|
||||
|
||||
var reload = function() {
|
||||
store.load();
|
||||
};
|
||||
|
||||
var tbar = [
|
||||
{
|
||||
text: gettext('Create'),
|
||||
handler: function() {
|
||||
alert("not implemented");
|
||||
//var win = Ext.create('PVE.dc.PoolEdit', {});
|
||||
//win.on('destroy', reload);
|
||||
//win.show();
|
||||
}
|
||||
}
|
||||
//edit_btn, remove_btn
|
||||
];
|
||||
|
||||
var sm = Ext.create('Ext.selection.RowModel', {});
|
||||
|
||||
Proxmox.Utils.monStoreErrors(me, store);
|
||||
|
||||
Ext.apply(me, {
|
||||
store: store,
|
||||
selModel: sm,
|
||||
tbar: tbar,
|
||||
viewConfig: {
|
||||
trackOver: false
|
||||
},
|
||||
columns: [
|
||||
{
|
||||
header: gettext('Name'),
|
||||
sortable: true,
|
||||
dataIndex: 'name',
|
||||
flex: 1
|
||||
},
|
||||
{
|
||||
header: gettext('Path'),
|
||||
sortable: true,
|
||||
dataIndex: 'path',
|
||||
flex: 1
|
||||
},
|
||||
{
|
||||
header: gettext('Comment'),
|
||||
sortable: false,
|
||||
dataIndex: 'comment',
|
||||
renderer: Ext.String.htmlEncode,
|
||||
flex: 2
|
||||
}
|
||||
],
|
||||
listeners: {
|
||||
activate: reload
|
||||
}
|
||||
});
|
||||
|
||||
me.callParent();
|
||||
|
||||
store.load();
|
||||
}
|
||||
});
|
@ -4,6 +4,7 @@ JSSRC= \
|
||||
VersionInfo.js \
|
||||
SystemConfiguration.js \
|
||||
Subscription.js \
|
||||
DataStoreConfig.js \
|
||||
NavigationTree.js \
|
||||
Application.js \
|
||||
MainView.js
|
||||
|
@ -15,7 +15,7 @@ Ext.define('PBS.store.NavigationStore', {
|
||||
{
|
||||
text: gettext('Data Store'),
|
||||
iconCls: 'fa fa-envelope-o',
|
||||
path: 'pbsDataStoreConfiguration',
|
||||
path: 'pbsDataStoreConfig',
|
||||
leaf: true
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user