This question is locked. New answers and comments are not allowed.
I am trying to use splitter telerik extension in vbhtml page. But the following code giving syntax errors
@(Html.Telerik().Splitter()
.Name("LayoutSplitter")
.Orientation(SplitterOrientation.Vertical)
.Panes(panes =>
{
panes.Add()
.Content("Top pane")
.Resizable(false);
panes.Add()
.Content("Middle pane")
.Resizable(false);
panes.Add()
.Content("Bottom pane")
.Resizable(false);
})
)
Any help will be highly appreciated
@(Html.Telerik().Splitter()
.Name("LayoutSplitter")
.Orientation(SplitterOrientation.Vertical)
.Panes(panes =>
{
panes.Add()
.Content("Top pane")
.Resizable(false);
panes.Add()
.Content("Middle pane")
.Resizable(false);
panes.Add()
.Content("Bottom pane")
.Resizable(false);
})
)
Any help will be highly appreciated