Hi
I am currently evaluating Editor Control(RADControl for aspnet ajax). I have following issue using the controls.
I have multiple divs on the page. The html body tag has scroll set to no. And my users scroll using div scrollbar. But when i put the editor in that div, i cant scroll down to bottom of the div. It considers browser screen size as height and it doesnt go beyond that. I think there is some issue with absolute and relative positioning.
I am currently evaluating Editor Control(RADControl for aspnet ajax). I have following issue using the controls.
I have multiple divs on the page. The html body tag has scroll set to no. And my users scroll using div scrollbar. But when i put the editor in that div, i cant scroll down to bottom of the div. It considers browser screen size as height and it doesnt go beyond that. I think there is some issue with absolute and relative positioning.
I am attaching an image file so that you can show to your technical team to send me workaround.
I have an image but i dont find a place to upload in the forum.
The div tag is as below
<asp:Panel ID="divFixPanel" runat="server">
x.. header controls in this panel than remain static on the page..
</asp:Panel>
<asp:Panel ID="divScroll" runat="server" Style="overflow-y: scroll; overflow-x: auto;
width: 100%; height: expression(screen.height-document.getElementById('ctl00_ContentPlaceHolder1_divFixPanel').offsetHeight-(window.screenTop+60) + 'px');">
x
x
x editor1
x editor 2
x editor 3
</asp:Panel>
