Edit in JSFiddle

var products = [{
    ProductID : 1,
    ProductName : "Chai",
    SupplierID : 1,
    CategoryID : 1,
    QuantityPerUnit : "10 boxes x 20 bags",
    UnitPrice : 18.0000,
    UnitsInStock : 39,
    UnitsOnOrder : 0,
    ReorderLevel : 10,
    Discontinued : false,
    Category : {
        CategoryID : 1,
        CategoryName : "Beverages",
        Description : "Soft drinks, coffees, teas, beers, and ales"
    }
}, {
    ProductID : 2,
    ProductName : "Chang",
    SupplierID : 1,
    CategoryID : 1,
    QuantityPerUnit : "24 - 12 oz bottles",
    UnitPrice : 19.0000,
    UnitsInStock : 17,
    UnitsOnOrder : 40,
    ReorderLevel : 25,
    Discontinued : false,
    Category : {
        CategoryID : 1,
        CategoryName : "Beverages",
        Description : "Soft drinks, coffees, teas, beers, and ales"
    }
}, {
    ProductID : 3,
    ProductName : "Aniseed Syrup",
    SupplierID : 1,
    CategoryID : 2,
    QuantityPerUnit : "12 - 550 ml bottles",
    UnitPrice : 10.0000,
    UnitsInStock : 13,
    UnitsOnOrder : 70,
    ReorderLevel : 25,
    Discontinued : false,
    Category : {
        CategoryID : 2,
        CategoryName : "Condiments",
        Description : "Sweet and savory sauces, relishes, spreads, and seasonings"
    }
}, {
    ProductID : 4,
    ProductName : "Chef Anton's Cajun Seasoning",
    SupplierID : 2,
    CategoryID : 2,
    QuantityPerUnit : "48 - 6 oz jars",
    UnitPrice : 22.0000,
    UnitsInStock : 53,
    UnitsOnOrder : 0,
    ReorderLevel : 0,
    Discontinued : false,
    Category : {
        CategoryID : 2,
        CategoryName : "Condiments",
        Description : "Sweet and savory sauces, relishes, spreads, and seasonings"
    }
}, {
    ProductID : 5,
    ProductName : "Chef Anton's Gumbo Mix",
    SupplierID : 2,
    CategoryID : 2,
    QuantityPerUnit : "36 boxes",
    UnitPrice : 21.3500,
    UnitsInStock : 0,
    UnitsOnOrder : 0,
    ReorderLevel : 0,
    Discontinued : true,
    Category : {
        CategoryID : 2,
        CategoryName : "Condiments",
        Description : "Sweet and savory sauces, relishes, spreads, and seasonings"
    }
}, {
    ProductID : 6,
    ProductName : "Grandma's Boysenberry Spread",
    SupplierID : 3,
    CategoryID : 2,
    QuantityPerUnit : "12 - 8 oz jars",
    UnitPrice : 25.0000,
    UnitsInStock : 120,
    UnitsOnOrder : 0,
    ReorderLevel : 25,
    Discontinued : false,
    Category : {
        CategoryID : 2,
        CategoryName : "Condiments",
        Description : "Sweet and savory sauces, relishes, spreads, and seasonings"
    }
}, {
    ProductID : 7,
    ProductName : "Uncle Bob's Organic Dried Pears",
    SupplierID : 3,
    CategoryID : 7,
    QuantityPerUnit : "12 - 1 lb pkgs.",
    UnitPrice : 30.0000,
    UnitsInStock : 15,
    UnitsOnOrder : 0,
    ReorderLevel : 10,
    Discontinued : false,
    Category : {
        CategoryID : 7,
        CategoryName : "Produce",
        Description : "Dried fruit and bean curd"
    }
}, {
    ProductID : 8,
    ProductName : "Northwoods Cranberry Sauce",
    SupplierID : 3,
    CategoryID : 2,
    QuantityPerUnit : "12 - 12 oz jars",
    UnitPrice : 40.0000,
    UnitsInStock : 6,
    UnitsOnOrder : 0,
    ReorderLevel : 0,
    Discontinued : false,
    Category : {
        CategoryID : 2,
        CategoryName : "Condiments",
        Description : "Sweet and savory sauces, relishes, spreads, and seasonings"
    }
}, {
    ProductID : 9,
    ProductName : "Mishi Kobe Niku",
    SupplierID : 4,
    CategoryID : 6,
    QuantityPerUnit : "18 - 500 g pkgs.",
    UnitPrice : 97.0000,
    UnitsInStock : 29,
    UnitsOnOrder : 0,
    ReorderLevel : 0,
    Discontinued : true,
    Category : {
        CategoryID : 6,
        CategoryName : "Meat/Poultry",
        Description : "Prepared meats"
    }
}, {
    ProductID : 10,
    ProductName : "Ikura",
    SupplierID : 4,
    CategoryID : 8,
    QuantityPerUnit : "12 - 200 ml jars",
    UnitPrice : 31.0000,
    UnitsInStock : 31,
    UnitsOnOrder : 0,
    ReorderLevel : 0,
    Discontinued : false,
    Category : {
        CategoryID : 8,
        CategoryName : "Seafood",
        Description : "Seaweed and fish"
    }
}]

$(document).ready(function() {
                    $("#grid").kendoGrid({
                        dataSource: {
                            type: "odata",
                            transport: {
                                read: "http://demos.telerik.com/kendo-ui/service/Northwind.svc/Orders"
                            },
                            schema: {
                                model: {
                                    fields: {
                                        OrderID: { type: "number" },
                                        ShipCountry: { type: "string" },
                                        ShipCity: { type: "string" },
                                        ShipName: { type: "string" },
                                        OrderDate: { type: "date" },
                                        ShippedDate: { type: "date" }
                                    }
                                }
                            },
                            pageSize: 15
                        },
                        height: 550,
                        sortable: true,
                        resizable: true,
                        pageable: true,
                        columns: [
                            {
                                field: "OrderDate",
                                title: "Order Date",
                                width: 120,
                                format: "{0:MM/dd/yyyy}"
                            },
                            {
                                field: "ShipCountry",
                                title: "Ship Country"
                            },
                            {
                                field: "ShipCity",
                                title: "Ship City"
                            },
                            {
                                field: "ShipName",
                                title: "Ship Name"
                            },
                            {
                                field: "ShippedDate",
                                title: "Shipped Date",
                                format: "{0:MM/dd/yyyy}",
                                width: 200
                            },
                            {
                                field: "OrderID",
                                title: "ID",
                                width: 80
                            }
                        ]
                    });
                });
<div id="grid"></div>
/* THIS IS THE "FIX" */
.k-grid tr
{
   -webkit-transform: scale3d(1,1,1);
}