Declined
Last Updated: 05 Dec 2013 08:16 by ADMIN
Jeff Schnarel
Created on: 25 Nov 2013 17:51
Category: Window
Type: Bug Report
0
FIX unable to enter text input in radwindow with textbox component on ipad after zoom
Opening a RadWindow containing a text input and selecting the input brings up the onboarrd keyboard. If you then zoom the input, the textbox becomes uneditable until the keyboard is manually hidden or the page is refreshed. I believe this is a focus issue, but cannot discern the details.
1 comment
ADMIN
Marin Bratanov
Posted on: 05 Dec 2013 08:15
This seems to be a problem with iframes and iPad. It reproduces with the following markup on the main page:
<div class="iframeHolder">
    <iframe src="content.aspx"></iframe>
</div>

.iframeHolder {
    position: absolute;
    top: 200px;
    left: 200px;
    border: 1px solid red;
    width: 300px;
    height: 300px;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}
 
    .iframeHolder iframe {
        width: 100%;
        height: 100%;
    }

which is very similar to the RadWindow - an absolutely positioned element, holding an iframe.