Project

General

Profile

Bug #2394

Tabs connections- bug wit qtip

Added by Piotr Kuchciak about 10 years ago. Updated almost 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 },
});
}
);
}
},
],

History

#1

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!

Also available in: Atom PDF