Reputation: 360
I'm having a problem with my Ext.Ajax.request
. It was working perfectly when I used prototype.js
, but I was adviced to not use it as it would cause other problems with Ext.
My code looks like this:
var me = this;
Ext.Ajax.Request({
url : 'index.php/ajax/login/',
method: 'POST',
timeout : 30000,
params : {
// Params here
},
scope: me,
success : me.onLoginRequestSuccess,
failure : me.onLoginRequestFailure
});
But it produces this error:
Ext.Ajax.Request is not a function
on
failure : me.onLoginRequestFailure
Anyone have any idea what this error means and how I can fix it?
Regards,
Upvotes: 1
Views: 1756
Reputation: 17860
Of cours it's not - it's request()
http://docs.sencha.com/ext-js/4-0/#!/api/Ext.Ajax-method-request
Upvotes: 3