or
data: 'GetRolesResult.Roles',
But the grid does still not show any rows at all.
How do I tell the grid where to look for data, inside, the json response?

$(document).ready(function() { $("#grid").kendoGrid({ dataSource: { data: booking_data, schema: { model: { fields: { invoice_id: { type: "number" }, invoice_date: { type: "string" }, invoice_name: { type: "string" }, invoice_price: { type: "number" }, invoice_status: { type: "string" } } } }, pageSize: 15 }, scrollable: true, sortable: true, filterable: true, pageable: true, columns: [ { field: "invoice_id", title: "Invoice ID" }, { field: "invoice_date", title: "Invoice Date" }, { field: "invoice_name", title: "Customer Name" }, { field: "invoice_price", title: "Invoice Price" }, { field: "invoice_status", title: "Invoice Status" } ] }); });
How would I go about looping through the entire items in a menu but only get the items from the last nested list? Say I have the following menu:
The items in bold is what I mean - the end of the line so to speak in each root item.
