Guest User

Untitled

a guest
Jul 16th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Ext.onReady(function(){
  2.  
  3. var window = new Ext.Window ( {
  4. "title": "Debug window",
  5. "closable": true,
  6. "autoscroll": false,
  7. "items": [
  8. {
  9. "title": false,
  10. "xtype": "panel",
  11. "split": true,
  12. "minHeight": 200,
  13. "autoScroll": true,
  14. "id": 2,
  15. "layout": "fit",
  16. "autoLoad": {
  17. "url": "?js",
  18. "script": false
  19. }
  20. }
  21. ],
  22. "only": false
  23. } );
  24. window.show();
  25.  
  26. });
  27. });
Add Comment
Please, Sign In to add comment