I'm working with Kendo UI Grid and I want to know if it is possible to have both column and row headers, like this:
colHeader1 colHeader2 colHeader3
rowHeader1
rowHeader2
rowHeader3
My grid:
$("#dataGrid").kendoGrid({
editable: true,
columns: [{ field: "name", title: "Name" },{ field: "age", title: "Age" }],
dataSource: _dataSource()});
var _dataSource = function () {
return new kendo.data.DataSource({
transport: { read: { type: "GET", crossDomain: true, url: url + "person", dataType: "json"}},
schema: { data: "data", total: "total"}});};
My grid datasource will always have 30 records (fixed).