Advertisement
Guest User

Untitled

a guest
Mar 31st, 2014
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. {
  2. xtype: 'button',
  3. text: 'GO',
  4. itemId: 'prepare',
  5. margin: '10 3 0 20',
  6. handler : function() {
  7. var form = this.up("form").getForm();
  8. form.submit({
  9. method: "POST",
  10. submitEmptyText : false,
  11. params : { __format: "ext" },
  12. success: function(form, action) {
  13. form.owner.up("panel").down("textareafield").setValue(action.result.config);
  14. }
  15. });
  16. }
  17. },
  18. {
  19. xtype: "textareafield",
  20. name: 'config',
  21. margin: '10 3 0 10',
  22. flex: 1
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement