I have a RadWindow overlay that opens up with some textboxes in it. The overlay pops up over an Flash video normally, but on the iPad, we have an HTML5 video there instead.
When it's on the iPad with this HTML5 video, whenever I try to click on a textbox to enter information, the click is registered on the HTML5 video behind the overlay instead. Only the left half of the overlay is over the html5 video, so if I click on the far right of the textbox, it will register the click correctly inside the textbox and bring a cursor up.
I am calling the SetActive() function on the window, so it should be the active window. Any ideas? Has anyone else run into this problem? It works fine on a desktop when a flash player is involved.
When it's on the iPad with this HTML5 video, whenever I try to click on a textbox to enter information, the click is registered on the HTML5 video behind the overlay instead. Only the left half of the overlay is over the html5 video, so if I click on the far right of the textbox, it will register the click correctly inside the textbox and bring a cursor up.
I am calling the SetActive() function on the window, so it should be the active window. Any ideas? Has anyone else run into this problem? It works fine on a desktop when a flash player is involved.
var
oManager = radopen(
'/testfile.aspx'
,
null
);
oManager.setSize(450, 400);
oManager.center();
oManager.SetActive();