Commit b58c4275a05f8831aba26976b6dc7a19fc9e1e17

Authored by Nathanael Jourdane
1 parent 9b347550

epntap: fix grids tooltips

Showing 1 changed file with 4 additions and 2 deletions   Show diff stats
js/app/views/EpnTapUI.js
... ... @@ -454,7 +454,8 @@ Ext.define('amdaUI.EpnTapUI', {
454 454 return 'disabled_row';
455 455 }
456 456 }
457   - }
  457 + },
  458 + renderTo: Ext.getBody()
458 459 });
459 460  
460 461 Ext.create('Ext.tip.ToolTip', {
... ... @@ -610,7 +611,8 @@ Ext.define('amdaUI.EpnTapUI', {
610 611 { text: 'Size', dataIndex: 'access_estsize', flex: 1, renderer: sizeRender },
611 612 { text: 'URL', dataIndex: 'access_url', flex: 1, renderer: linkRender },
612 613 { text: 'Thumb.', dataIndex: 'thumbnail_url', flex: 1, renderer: imgRender}
613   - ]
  614 + ],
  615 + renderTo: Ext.getBody()
614 616 });
615 617  
616 618 Ext.create('Ext.tip.ToolTip', {
... ...