I am brand new to Sencha Touch. I followed Sencha Touch's "Getting Started" example video (http://docs.sencha.com/touch/2-0/#!/guide/getting_started). In the example there is a contact form(the code follows) that calls a php function that is left undefined in the video, resulting in a file not found console error. When I add a php function I get the following console error:
" Uncaught Error: You're trying to decode an invalid JSON String: "
I get this error even if the file is empty. Does anyone know what I am doing wrong? Or any pointers to tutorials explaining how to call php functions from Sencha?
The contact form code to see how the php function is called:
Ext.define('GS.view.Contact', {
extend: 'Ext.form.Panel',
xtype: 'contactform',
requires: [
'Ext.form.FieldSet',
'Ext.field.Email'
],
config: {
title: 'Contact',
iconCls: 'user',
**url: 'php/Contact.php',**
items: [
{
xtype: 'fieldset',
title: 'Contact Us',
instructions: '(email is not required)',
items: [
{
xtype: 'textfield',
name: 'name',
label: 'Name'
},
{
xtype: 'emailfield',
name: 'email',
label: 'Email'
},
{
xtype: 'textareafield',
name: 'message',
label: 'Message'
}
]
},
{
xtype: 'button',
text: 'Send',
ui: 'confirm',
**handler: function(){
this.up('contactform').submit();**
}
}
]
}
});