I've hit a brick wall with this and appreciate any help that's offered. I'm building out a GS app and trying to implement the Contact Form. My code is the standard GS code for the Contact.js, app.js, Main.js and I'm using formmail.php which has always worked in the past. My Contact code is as follows:
] }, { xtype: 'button', text: 'Submit', ui: 'confirm', handler: function() { this.up('contactform').submit(); alert('Click OK to Send'); }
} ] } });
When I click Submit other than the Alert box nothing happens. The form content isn't sent and there is no redirect to the Thank You page. Any ideas would be more than welcome.