kendo ui grid column header tooltip

kendo ui grid column header tooltip

In the below grid view the header Template column parameter is used show the tooltip on column headers. The code sample as given below.

<div id="gridView"></div>

$("#gridView").kendoGrid({
    pageable: true,
    scrollable: true,
    resizable: true,
    sortable: true,
    columnMenu: true,
    dataBound: function (e) {
    },
    columns: [
        { field: "MonthlyCharge", title: "Monthly Charge ($)", width: 200, headerTemplate: '<span title="Monthly Charges">MonthlyCharge</span>' },
        { field: "CommitedService", title: "Commited Service", width: 200, headerTemplate: '<span title="Commited Service">CommitedService</span>' }
    ],
    dataSource: {
        type: "json",
        transport: {
            read: "http://localhost:37745/Contract/Api/Pricing/GetByCTID/" + session().PricingID
        },
        pageSize: 10
    }

});

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

kendo ui grid column header tooltip kendo ui grid column header tooltip Reviewed by Anil Singh on 2:15 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^