Page 2 of 2

Mapping Json to Grid

Posted: Wed Jun 20, 2012 12:59 am
by maxkatz

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