Guest User

Untitled

a guest
Jun 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. getTip: function() {
  2. var tip = this.tip;
  3.  
  4. if (!tip) {
  5. tip = this.tip = Ext.widget('tooltip', {
  6. target: this.el,
  7. title: 'Error Details:',
  8. autoHide: false,
  9. anchor: 'bottom',
  10. mouseOffset: [-11, -2],
  11. closable: true,
  12. constrainPosition: false,
  13. cls: 'errors-tip'
  14. });
  15. console.log(tip)
  16. tip.show();
  17. }
  18. return tip;
  19. },
Add Comment
Please, Sign In to add comment