How can we add data to the HTML headers sent by the data source?
Is there a function or property that will do this?
Something like this would be a simple fix as JQuery 1.5.* supports adding
a "headers" map to add any custom headers you want.
Thanks
Is there a function or property that will do this?
Something like this would be a simple fix as JQuery 1.5.* supports adding
a "headers" map to add any custom headers you want.
transport: { read: "http://localhost/WebAPITest/api/Transactions", datatype: "json", headers: { Authorization: "user/password" } },
Thanks