how do you bind Data Source to normalized data? I know I can take the fields and data2 arrays and construct something that looks like data1 but that will be time consuming.
// Denormalizedvar data1 = [{"name":"John", "age":20},{"name":"Tom", "age":25}];// Normalized var fields = ["name","age"];var data2 = [["John",20],["Tom",25]];