odatatools icon indicating copy to clipboard operation
odatatools copied to clipboard

OrderBy does not work

Open rhilliges opened this issue 7 years ago • 1 comments

Using OrderBy attaches " undefined" to request instead of "$oderby=...".

rhilliges avatar Jan 23 '18 10:01 rhilliges

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 : ""));

apazureck avatar Jan 24 '18 10:01 apazureck