Browse Source

add reload button to the log viewer

Natenom/support-murmur-13-1446181288462
Michael Ziegler 14 years ago
parent
commit
5d11e9f200
  1. 11
      pyweb/mumble/templates/mumble/mumble.html

11
pyweb/mumble/templates/mumble/mumble.html

@ -240,7 +240,9 @@
width: 500,
dataIndex: 'txt'
}]),
bbar: [{ text: gettext('Filter') + ':' }, {
bbar: [{
text: gettext('Filter') + ':'
}, {
xtype: 'textfield',
name: 'filter',
listeners: {
@ -256,7 +258,12 @@
field.ownerCt.ownerCt.store.reload();
}
}
},
}
}, '-', {
iconCls: 'x-tbar-loading',
handler: function(){
this.ownerCt.ownerCt.store.reload();
}
}],
store: new Ext.data.DirectStore({
baseParams: {'server': 1, 'start': 0, 'limit': 100, 'filter': ''},

Loading…
Cancel
Save