Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. Ext.onReady(function () {
  2.  
  3. Ext.QuickTips.init();
  4.  
  5. Ext.create('Ext.container.Viewport', {
  6. layout: 'fit',
  7. padding: 100,
  8. items: [{
  9. tbar: {
  10. items: ['->',{
  11. text: 'Toolbar button',
  12. tooltip: 'toolbar button tooltip',
  13. menu: {
  14. items: [{
  15. tooltip: 'menu item tooltip',
  16. text: 'menu item'
  17. }]
  18. }
  19. }]
  20. }
  21. }]
  22. });
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement