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

IntegerTextboxes don't work in Window

2 Answers 77 Views
Window
This is a migrated thread and some comments may be shown as answers.
Ralph
Top achievements
Rank 1
Ralph asked on 20 Feb 2013, 11:05 AM
@{ Html.Kendo().Window()
        .Name("WindowNveBack")
        .Title("Neuer Kundensatz")
        .Resizable(resizing => resizing
            .Enabled(false)
            //.MinHeight(250)
            //.MinWidth(250)
            //.MaxHeight(500)
            //.MaxWidth(500)
        )
        .Modal(true)
        .Content(@<text>
            <div class="pddng_7 lft">
                <div class="kd_adr_left_sdgerf">
                    <ul>
                        <li class="mrgn_bttm_4 li_kd_adr_left_sdgerf">Kd.Nr. / Index</li>
                        <li class="mrgn_bttm_4 li_kd_adr_left_sdgerf">Name</li>
                        <li class="mrgn_bttm_4 li_kd_adr_left_sdgerf">Land / PLZ / Ort</li>
                        <li class="li_kd_adr_left_sdgerf"></li>
                    </ul>
                </div>
                <div class="lft">
                    <ul>
                        <li class="li_height_sdgerf mrgn_bttm_4">
                            <div class="lft">@Html.Kendo().IntegerTextBox().Name("text1")</div>
                            <div class="lft mrgn_left_4">@Html.Kendo().IntegerTextBox().Name("text2")</div>
                            <div class="lft mrgn_left_4"></div>
                            <div class="clear"></div>
                        </li>
                    </ul>
                     
                </div>
                 
                <div class="clear"></div>
            </div>
        </text>)
        //.Width(593)
        //.Height(300)
        .Visible(false)
        .Draggable(true).Render();
}
Hello, my problem is, that when the Window is open, I select the first Numeric textbox and type digits, it works. When Iselect the second textbox and try to type digits, it doesn't work. What can I do?

2 Answers, 1 is accepted

Sort by
0
Georgi Krustev
Telerik team
answered on 22 Feb 2013, 10:46 AM
Hello Ralph,

 
I prepared a simple test project in my attempt to replicate the issue, but to no avail. Could you check it and let me know if I am missing something? Everything works as expected on my end.

Kind regards,
Georgi Krustev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Ralph
Top achievements
Rank 1
answered on 22 Feb 2013, 11:22 AM
Hello,
the Problem was, that I had the old Kendo version v2012.3.1114, now with the current Version (

v2012.3.13) it works. Thank You!

Tags
Window
Asked by
Ralph
Top achievements
Rank 1
Answers by
Georgi Krustev
Telerik team
Ralph
Top achievements
Rank 1
Share this question
or