odatatools
odatatools copied to clipboard
OrderBy does not work
Using OrderBy attaches " undefined" to request instead of "$oderby=...".
Workaround for now:
Missing brackets.
Please replace in template proxy.ot line 83:
this.addToQuery("$orderby=" + property + order ? " " + order : "");
with
this.addToQuery("$orderby=" + property + (order ? " " + order : ""));