Hi,
I put input text inside splitter makes input text read-only...
Here's my code snippet...
Index VIEW:
@helper RenderContentSplitter()
{
@(Html.Kendo().Splitter()
.Name("contentSplitter")
.Orientation(SplitterOrientation.Vertical)
.Panes(contentPanes =>
{
contentPanes.Add()
.Collapsible(true)
.HtmlAttributes(new { style = "height: 100%; width: 100%;", id = "pane1" })
.Resizable(true)
.Content(
Html.Action("RowDesignPartial").ToHtmlString()
);
})
)
}
RowDesignPartial VIEW:
<input type="text" id="txtRowName" name="txtRowName" class="k-textbox" value="" />
Thanks.......
I put input text inside splitter makes input text read-only...
Here's my code snippet...
Index VIEW:
@helper RenderContentSplitter()
{
@(Html.Kendo().Splitter()
.Name("contentSplitter")
.Orientation(SplitterOrientation.Vertical)
.Panes(contentPanes =>
{
contentPanes.Add()
.Collapsible(true)
.HtmlAttributes(new { style = "height: 100%; width: 100%;", id = "pane1" })
.Resizable(true)
.Content(
Html.Action("RowDesignPartial").ToHtmlString()
);
})
)
}
RowDesignPartial VIEW:
<input type="text" id="txtRowName" name="txtRowName" class="k-textbox" value="" />
Thanks.......