Ajax 呼び出しから返された JSON 応答がありますが、JSON のどの部分にもまったくアクセスできないようです。
JSON 形式は [{"id":"1","description":"Employee","coverage":"Center","covered":"X"}] です。
私は次のことを試しましたが、何も機能しません:
success: function(result, request){
jsonData = Ext.util.JSON.decode(result.responseText);
var id = jsonData.id;
alert(id);
}
* returns as undefined
success: function(result,request){
jsonData = result.responseText ##shows the Json perfectly
alert(jsonData.length) ### displays as number of chars, not how many objects in json string
}