This is a migrated thread and some comments may be shown as answers.

[Solved] Splitter control in vbhtml razor page

1 Answer 114 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Atanu
Top achievements
Rank 1
Atanu asked on 21 May 2012, 10:57 AM
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

1 Answer, 1 is accepted

Sort by
0
Accepted
Alex Gyoshev
Telerik team
answered on 24 May 2012, 08:28 AM
Hello Atanu,

Please refer to the following thread for more information on how to use the multi-line lambda expressions in the fluent interface in VB.

Kind regards,
Alex Gyoshev
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now.
Tags
Splitter
Asked by
Atanu
Top achievements
Rank 1
Answers by
Alex Gyoshev
Telerik team
Share this question
or