This question is locked. New answers and comments are not allowed.
Hi All - I'm seeing odd behavior in both IE7 and in IE8 compatibility mode around text input boxes on popup windows. The first time opening a popup window, all works well. After closing it and re-opening it, the text input boxes no longer accept text. I do get the built in auto-complete functionality from IE though if I double-click in a box, so they are editable still. It's almost as if something is preventing any keystrokes.
Window open code:
The window open code seems OK from looking at other posts. Note that I am putting the action into an iframe, as the popup window will eventually need to post back to the server and remain open, displaying the results.
Attached is a small sample app with steps to re-produce. I'm using the Q2 open source build (7/12). Has anyone run across this?
Thanks,
Jeff
Window open code:
<input type=
"button"
value=
"Popup"
onclick=
"javascript:showDialogWindow('/Home/Popup');"
/>
<script type=
"text/javascript"
>
function
showDialogWindow(url) {
var
windowElement = $.telerik.window.create({
title:
"Popup Window Issue"
,
html:
'<iframe src="'
+ url +
'" frameborder="0" style="width:100%;height:100%"></iframe>'
,
modal:
true
,
resizable:
true
,
draggable:
true
,
width: 500,
height: 300,
onClose:
function
(e) {
e.preventDefault();
windowElement.data(
'tWindow'
).destroy();
}
});
windowElement.data(
'tWindow'
).center().open();
}
</script>
The window open code seems OK from looking at other posts. Note that I am putting the action into an iframe, as the popup window will eventually need to post back to the server and remain open, displaying the results.
Attached is a small sample app with steps to re-produce. I'm using the Q2 open source build (7/12). Has anyone run across this?
Thanks,
Jeff