For certain characters when putting in query string parameters they need to be URL encoded or they will cause problem to the web service.
I faced this problem with the # character, encoding it and use %23 instead solved the problem.
Bruce Ng's software development blog
An archive of solutions of programming problems I have faced in my career
For certain characters when putting in query string parameters they need to be URL encoded or they will cause problem to the web service.
I faced this problem with the # character, encoding it and use %23 instead solved the problem.
Not entirely sure why, but when using ajax proxies, specifying the URL is not enough, the data won’t be displayed on lists/panels.
A reader must also be defined in the proxy, otherwise the data will not be read correctly
proxy: {
type: ‘ajax’,
url: ‘data.json’,
reader:{
type:’json’,
rootProperty: ‘DATA’
}
}
Make sure that