or
01.@(Html.Kendo().TabStrip() _02. .Name("tabstrip") _03. .Items(Sub(tabstrip)04. tabstrip.Add().Text("Delivery Tickets") _05. .Selected(True) _06. .Content(Sub()07. Html.Kendo().Grid(Of DeliveryTicketDisplay) _08. .Name("Grid") _09. .Columns(Sub(c)10. c.Bound(Function(x) x.DeliveryTicketID)11. c.Bound(Function(x) x.TicketDate)12. c.Bound(Function(x) x.CustomerID)13. c.Bound(Function(x) x.Location)14. End Sub) _15. .DataSource(Sub(dataSource)16. dataSource _17. .Ajax() _18. .Read(Function(reader) reader.Action("List", "DeliveryTicket", New With {.CustomerID = Model.CustomerID}))19. End Sub)20. End Sub)21. 22. tabstrip.Add().Text("Contacts") _23. .LoadContentFrom("List", "Contact", New With {.CustomerID = Model.CustomerID})24. End Sub)25.).ToolBar(commands => commands.Custom().HtmlAttributes(new { id = "SendEmailStatements" }) .HtmlAttributes(new { @CLASS = "sendBtn" }) .Text("Send") .Action("SendBuyerEmailStatements", "Home", new { DayendCycle = SelectedDayendCycle})).Read(read => read.Action("BuyerEmailStatementsGrid_Read", "Home").Data("SelectedDayendCycle")