Bug #2394
Tabs connections- bug wit qtip
0%
Description
Hello
I found that qtip on tab connection not show when i select one connection and select the mouse, i dont see info CANCEL THIS CONNECTION which is save in file status.js
var actions = new Ext.ux.grid.RowActions({
header: '',
width: 10,
actions: [
{
iconCls: 'cancel',
qtip: 'Cancel this connection',
cb: function(grid, rec, act, row) {
var id = grid.getStore().getAt(row).data.id;
Ext.MessageBox.confirm('Cancel Connection',
'Cancel the selected connection?',
function(button) {
if (button === 'no')
return;
Ext.Ajax.request({
url: 'api/connections/cancel',
params: { id: id },
});
}
);
}
},
],
History
Updated by Adam Sutton almost 10 years ago
- Category set to User Interface
- Priority changed from Normal to Low
Code looks right, can't see any sane reason it's not working. But then sanity and extjs have never really been bed fellows!