Mapping Json to Grid
Posted: Wed Jun 20, 2012 12:59 am
As Airports returns a string, create an array from it and then get the first element. You do this response mapping JavaScript.
code
var out = value.split(",");
return out;
/code