This question is locked. New answers and comments are not allowed.
I am New to aurelia and Kendo UI. I am trying to use Kendo UI list view. The code give in the docs is:
dataSource = new kendo.data.DataSource({ transport: { read: { url: '//demos.telerik.com/kendo-ui/service/Products', dataType: 'jsonp' } }, pageSize: 21 });
I want to pass parameters in body for the url, is there any way to achieve it? I mean make a POST call to web api which is async.
Thanks in advance!