Hello. I've been trying to submit a form with the FormPanel using the Action class Ext defaults to. However, I'd like it to consider the response as a script, not JSON-encoded.
Has anyone had any experience on this?
|
|
Hello. I've been trying to submit a form with the FormPanel using the Action class Ext defaults to. However, I'd like it to consider the response as a script, not JSON-encoded. Has anyone had any experience on this?
|
||
|
|
|
|
The best plan would be to create a custom action by extending You can then Your custom action can be called from |
||
|
|
|
|
using Form.getForm().submit() as your action response call works great and will automatically submit your form values to your backend as well as any custom values you would want to supply. On the return response you are passed a response object, which could be anything you want. So you could easily eval the return in the success handler. |
||
|
|