Hello, I would like to ask how does the VB syntax is for the Content part of this example, how can i add a html code like that in VB?
@(Html.Kendo().Splitter()
.Name("top")
.Orientation(SplitterOrientation.Horizontal)
.Panes(panes =>
{
panes.Add()
.HtmlAttributes(new { id = "left-pane" })
.Scrollable(true)
.Collapsible(true)
.Content(@<div>
@(Html.Kendo().TreeView()
.Name("treeview")
.DragAndDrop(true)
.DataTextField("Name")
.Events(events => events
.DragEnd("Change")
.Select("Selected")
)
.DataSource(dataSource => dataSource
.Read(read => read.Action("TreeView_Read", "Platform")))
)
</div>
);
@(Html.Kendo().Splitter()
.Name("top")
.Orientation(SplitterOrientation.Horizontal)
.Panes(panes =>
{
panes.Add()
.HtmlAttributes(new { id = "left-pane" })
.Scrollable(true)
.Collapsible(true)
.Content(@<div>
@(Html.Kendo().TreeView()
.Name("treeview")
.DragAndDrop(true)
.DataTextField("Name")
.Events(events => events
.DragEnd("Change")
.Select("Selected")
)
.DataSource(dataSource => dataSource
.Read(read => read.Action("TreeView_Read", "Platform")))
)
</div>
);