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

Input Text inside Splitter NOT Working...

1 Answer 81 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Steve Palm
Top achievements
Rank 1
Steve Palm asked on 10 Sep 2012, 02:19 AM
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.......

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 12 Sep 2012, 08:37 AM
Hi Steve,

We are not aware of such a problem and it could not reproduce it locally. Generally, a textbox can be readonly only if it has a readonly attribute applied, or if there is some other element overlaying it, so that it cannot be focused by clicking with the mouse. If you send a runnable demo, I will take a look.

Regards,
Dimo
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Splitter
Asked by
Steve Palm
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or