kendo ui grid display multiple columns data in one column

kendo ui grid display multiple columns data in one column

In the below kendo ui grid view, display multiple columnsdata in one column using [#= .... #] and [#: .... #].

Here [#= .... #] is used for model data and [#: .... #] is ued for javascript methods. 

The code sample as given below

<div id="gridViewMultiple"></div>


$("#gridViewMultiple").kendoGrid({
    pageable: true,
    scrollable: true,
    resizable: true,
    sortable: true,
    columnMenu: true,
    dataBound: function (e) {
    },
    columns: [
            {
                field: "Products",
                title: "Product Services",
                template: "#= ProductService.Product # - #= ProductService.ProductType # - #: getUsageTypeName(UsageIncludedTypeID) #",
                width: 310
            },
    ],
    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 display multiple columns data in one column kendo ui grid display multiple columns data in one column Reviewed by Anil Singh on 2:23 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^