I have a problem with the special characters and ajax in ie. this is my ajax function:
function cargarIndicadoresHobbide(elem){
$.ajax({
url:"cargarIndicadoresHobbide",
method: "GET",
data: {codProcesoCentro : elem.value},
beforeSend: function(jqXHR) {
try{
jqXHR.overrideMimeType('text/html; charset=iso-8859-1');
}
catch(e){
jqXHR = new ActiveXObject("MSXML2.XMLHTTP.3.0");
jqXHR.setRequestHeader("Content-Type", "text/xml; charset=iso-8859-1");
}
},
dataType: "json",
success: function(data){
$("#indicadorHobbideNIH").empty();
$("#indicadorHobbideNIH").append('<option value="0">Seleccione...</option>');
if(data.length>0){
for(var i=0;i<data.length;i++){
$("#indicadorHobbideNIH").append('<option value="'+data[i][0]+'">'+data[i][1]+'</option>');
}
$("#indicadorHobbideNIH").removeAttr("disabled");
}else{
$("#indicadorHobbideNIH").attr("disabled","disabled");
}
},
error: function(jqXHR, textStatus, errorThrown) {
alert("error:" + textStatus + " - exception:" + errorThrown);
}
});
this is my response method:
@RequestMapping(value="/cargarIndicadoresHobbide", method = RequestMethod.GET)
public @ResponseBody String cargarIndicadoresHobbide(@RequestParam("codProcesoCentro") int codProcesoCentro){
ProcesoCentro pc = procesoCentroManager.getProcesoCentroById(codProcesoCentro);
List<IndicadorHobbide> indicadoresHobbide = indicadorHobbideManager.getIndicadoresHobbide(pc.getProceso().getCodProceso());
return indicadorHobbideManager.getCargaIndicadoresHobbideJSON(indicadoresHobbide);
}
and this is the result in ie7
[[33,"Servicios certificados seg?SO 9001, ISO 14001 - EKOSCAN, OSHAS 18001"],
[34,"Grado de cumplimiento de los objetivos de los temas de gesti?,
[35,"Grado de cumplimiento de los objetivos de procesos clave"],
[36,"Gesti?con?o-financiera de procesos clave"],
[37,"?eas a las que se aplica 5S"]]
the problem is that the JSON is malformed but only in IE.
Thanks!!