I have a page that I am adding a wrapper div to after the page has been completely loaded. However, when this div is added, RadComboBoxes stop expanding or receiving input of any kind. Upon further testing, I found that the same happens for any control that has a popup div, such as datepickers. This is the code I'm using to add the div:
Thanks in advance for any help/insight you can offer.
var
body = GetFrameBody();
body.innerHTML =
"<div id='reportwrapper' style='overflow:auto; position: relative;'>"
+ body.innerHTML +
"</div>"
;
Thanks in advance for any help/insight you can offer.