Hi
I have a pre-built restful webapi service that has the following method
[Route("list/openquotes"), HttpGet]public HttpResponseMessage ListOpenQuotes()
when i try use it in a RadGrid, the default behaviour seems to be using the POST request method.
Is there a way to force the gird use use a HTTP GET instead?
This is the setup for the Grid
<ClientSettings > <DataBinding Location="SetByCode" SelectMethod="ui/list/openquotes" EnableCaching="false" ResponseType="JSON" CountPropertyName="Count" DataPropertyName="Data" /></ClientSettings>
I have a RadListVIew that is using HTTP GET as follows:
<DataService Location="SetByCode" DataPath="/ui/list/notifications" EnableCaching="false" ResponseType="JSON" HttpMethod="Get" CountPropertyName="Count" DataPropertyName="Data" SortParameterType="List" />