I am working with Extjs4. I am trying to send accented characters to server. I was trying to send ó. And what I was receiving at the server side was ó. I am sending it using Store proxy. In store proxy, I have added
headers: {
'Content-Type': 'charset=utf-8'
}
Still it did not send the accented characters properly. How should I send accented characters to the server? Thanks in advance!