Project

General

Profile

Actions

Bug #2394

open

Tabs connections- bug wit qtip

Added by Piotr Kuchciak over 10 years ago. Updated about 10 years ago.

Status:
New
Priority:
Low
Assignee:
-
Category:
User Interface
Target version:
-
Start date:
2014-10-20
Due date:
% Done:

0%

Estimated time:
Found in version:
3.9.1900
Affected Versions:

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 },
});
}
);
}
},
],

Actions

Also available in: Atom PDF