Hi,
I have an aspx page which I am showing in a radwindow using navigate url. Now, the issue is the window is not auto sizing correctly, still there are scroll bars, both horizntal and vertical.
1. The solution for this is just wrap the aspx page in a div tag and the autosize will work perfectly fine. like this
<form>
<div>
whole page content
</div>
</form>
But after doing this, the page on postback losts all the controls view and the window is left with only the title. Nothing on form after postback and window resizes to just the title bar.
Page is working perfectly fine if I dont wrap it in the <div> tags and autosize does not work.
Any suggestions?
Thanks in advance,
Jawwad