How to set Authorization header for transport read?

How to set authorization header for transport read?

This kendo ui combo-box is used for display customers list with filter attribute and added the features for set request header i.e.

           beforeSend: function (xhr) {
                xhr.setRequestHeader('UserType', session().UserType)
            }

The example code are given below

$("#Coustomers").kendoComboBox({
    placeholder: "-- Select --",
    dataTextField: "Value",
    dataValueField: "ID",
    filter: "contains",
    autoBind: false,
    minLength: 1,
    dataSource: {
        transport: {
            read: {
                url: "localhost://3454/API/Company/GetCoustomers/1"
            },
            beforeSend: function (xhr) {
                xhr.setRequestHeader('UserType', session().UserType)
            },
            dataType: "json"
        }
    }

});

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

How to set authorization header for transport read? How to set authorization header for transport read? Reviewed by Anil Singh on 10:27 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^