Javascript DoQuery
I'm utilizing the JavaScript SDK DoQuery call and everything is working fine except for my sorting. I'm trying to sort by FID 101 and FID 13, but I want to sort FID 101 in sortorder-A and FID 13 sortorder-D.
Here is my code:
var comments = qdb.getRecords(qdb.DoQuery("MY DBID", "{6.EX.1}AND{52.EX.1}AND{101.XCT.J}", "52.11.13.101","101.13", "sortorder-A"));
I have tried this, but it didn't work:
var comments = qdb.getRecords(qdb.DoQuery("MY DBID", "{6.EX.1}AND{52.EX.1}AND{101.XCT.J}", "52.11.13.101","101.13", "sortorder-A.sortorder-D"));

