BUG 8432 Adjust the tracking when debugging triggers.

This commit is contained in:
Hector Cortez
2012-02-23 12:32:34 -04:00
parent 54cee71502
commit 8c38a10db5
2 changed files with 16 additions and 9 deletions

View File

@@ -336,7 +336,14 @@ Ext.onReady(function(){
reader: reader,
sortInfo:{field: 'name', direction: "ASC"},
groupField:'execution_time',
proxy: new Ext.data.HttpProxy({url: 'debug_triggers?r='+Math.random()})
proxy: new Ext.data.HttpProxy({url: 'debug_triggers?r='+Math.random()}),
listeners: {
load : function() {
var detailPanel = Ext.getCmp('debug-details-panel');
detailPanel.setTitle('');
debugTriggersDetailTpl.overwrite(detailPanel.body, {});
}
}
});
var debugTriggers = new xg.GridPanel({