Hi, When serializing DAL Rows object into json, we see that the order is not maintained. On digging a little deep, we find that as_dict() of Rows is called instead of as_list(). On calling as_list() explicitly on controller fixes the problem for us.
Can the default behavior be fixed to use as_list for Rows always, as that makes more sense? -- Thanks Narendran

