How can I add a request header to an ExtJS ajax request?
I specifically want to add the header: accept-encoding
to equal true.
You can specify request headers like this:
Ext.Ajax.request({
url: 'yourUrl',
headers: {
'accept-encoding': 'true'
}
})