Skip to content

Instantly share code, notes, and snippets.

@weeksdev
Last active January 2, 2016 00:59
Show Gist options
  • Save weeksdev/8227212 to your computer and use it in GitHub Desktop.
Save weeksdev/8227212 to your computer and use it in GitHub Desktop.
ExtJS Ajax Request
Ext.Ajax.request({
url: 'page.php',
params: {
id: 1
},
success: function(response){
var text = response.responseText;
// process server response here
// var jsonData = Ext.JSON.decode(response.responseText);
// console.log(jsonData);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment