or

$(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.

columns: [{ field: "Title", title: "Title", format: "<img src='/Images/${ SKU }_small.jpg' alt='${ Title }' />" }, { field: "OFLC", title: "Rating", width: 55 }, { field: "Price", title: "Price", template: "$${ Price }" }]<img src='/Images/${ SKU }_small.jpg' alt='${ Title }' />