This question is locked. New answers and comments are not allowed.
I'm trying to get a partial view inside of a tab and I am having some difficulty with the syntax I've tried a number of different ways here is my last attempt(vbhtml) I found from another forum post although that one was in cshtml:
Html.Telerik().TabStrip() _
.Name("TabStrip") _
.Items(Function(tabStrip) _
tabStrip.Add() _
.Text("Contacts") _
.Content(@<text>@Html.RenderPartial("~/Views/Home/Index.vbhtml")</text>) _
.SelectedIndex(0) _
.Render()
Any advice would be very much appreciated.
Html.Telerik().TabStrip() _
.Name("TabStrip") _
.Items(Function(tabStrip) _
tabStrip.Add() _
.Text("Contacts") _
.Content(@<text>@Html.RenderPartial("~/Views/Home/Index.vbhtml")</text>) _
.SelectedIndex(0) _
.Render()
Any advice would be very much appreciated.