This question is locked. New answers and comments are not allowed.
I have a splitter and left panel is an editor.
I can increase editor panel, but can not decrease. Also mouse point seems going somewhere else when I'm trying to decrease the panel.
How can I resolve this issue?
Left panel. partial view contents (ajax load)
- Telerik MVC 3 UI Extension v.2011.2.914.340
- IE9, Chrome, FF7.0.1
I can increase editor panel, but can not decrease. Also mouse point seems going somewhere else when I'm trying to decrease the panel.
How can I resolve this issue?
@{Html.Telerik().Splitter().Name("page-edit-splitter") .HtmlAttributes(new { style = "height: 750px;" }) .Orientation(SplitterOrientation.Horizontal) .Panes(panes => { panes.Add() .HtmlAttributes( new { id="splitter-left"}) .Size("50%") .MinSize("500px") .Content(@<div id="edit-container"> contents
</div>); panes.Add() .Size("50%") .MinSize("130px") .Content(@<div id="preview-container"> contents. </div>); }) .Render(); }
Left panel. partial view contents (ajax load)
<div class="text-editor"> @{Html.Telerik().Editor() .Name("ContentText") .HtmlAttributes(new { style = "height:500px;width:100%" }) .Encode(false) .Value(@Model.ContentText) .Render(); }</div>- Telerik MVC 3 UI Extension v.2011.2.914.340
- IE9, Chrome, FF7.0.1
