This question is locked. New answers and comments are not allowed.
I am trying to create a dasboard page which will have multiple grids and various other controls. I can get a simple split to work with 2 grids inside RenderAction calls, but if I put this inside a more comple splitter scenario it does not render properly. I've broken the grids into partial views and call them through the RenderAction method.
Here is my Razor view page:
@{ ViewBag.Title = "TestSplitter";}<h2>TestSplitter</h2>@{Html.Telerik().Splitter().Name("TestSplit") .Orientation(SplitterOrientation.Horizontal) .Panes(hPanes => { hPanes.Add() .Content(@<p>Text inside splitter</p>); hPanes.Add() .Content( Html.Telerik().Splitter().Name("TestSplit2") .Orientation(SplitterOrientation.Vertical) .HtmlAttributes(new { style = "height: 1200px;" }) .Panes(vpanes => { vpanes.Add() .MinSize("100px") .Content(() => { @Html.RenderAction("UserJourneys"); }); vpanes.Add() .HtmlAttributes(new { style = "padding:1" }) .MinSize("100px") .Content(() => { @Html.RenderAction("UserQuests"); }); }).ToString()); }).Render(); }@Html.Telerik().ScriptRegistrar()I've attached the actual browser image to show what's happening. Just not sure how the RenderAction impacts the splitter javascripting and HTML connection.
Any ideas?
Thanks,
-Sid.
