By default, a FormPanel in ExtJS 3.1.0 posts the form fields as application/x-www-form-urlencoded when you call its submit() function.

Is there any way to get it to post JSON instead?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You can use getValues() to pull the values and then Ext.encode() them and manually do an Ext.Ajax.request({}) with this data as well.

link|improve this answer
Thanks, this is the same solution as the one given here: extjs.com/forum/showthread.php?p=433863#post433863 – Daniel T. Feb 4 '10 at 19:13
feedback

You probably want to extend Ext.form.Action.Submit to encode the params as JSON instead of url-encoding them in the body.

link|improve this answer
Thanks for the reply, this is definitely the direction I want to go in, but I'm just starting off with ExtJS and I'd rather get the basics working first before I start extending stuff. – Daniel T. Feb 4 '10 at 19:15
Extending components is really easy to do: see the section "A Re-usable Template" in extjs.com/learn/Manual:Component:Extending_Ext_Components Learn to extend now before you build too much crazy code! – Jonathan Julian Feb 7 '10 at 15:48
This seems to apply to ExtJS 3.0 but might probably be useful nevertheless: yannlaviolette.com/2010/07/… – Erik Allik Nov 21 '11 at 23:23
feedback

You can override Ext.form.Action.Submit.run.

Just like this:

Ext.override(Ext.form.Action.Submit, {
    run: function() {
        // Your code here
    }
});
link|improve this answer
Even though it should not really be monkeypatched like this, I think it's a useful hint as to which direction to move to when defining a custom Submit action. – Erik Allik Nov 21 '11 at 23:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.