i am trying to pass non numeric index values through JSON but am not getting the data.
var ConditionArray = new Array(); ConditionArray[0] = \"1\"; ConditionArra
JSON structure only recognizes numeric properties of an Array. Anything else is ignored.
You need an Object structure if you want to mix them.
var ConditionArray = new Object();