OK here is the scenario. I have a website with a master page set up, and within one of the pages I am usin the grid control, which is set up to run off from partial postbacks. Everything works fine other then the control breaks out of the div that is set up to be a wrapper for the contentplaceholder, that is filled by the page with the grid. So to give you an idea here is a general idea of what i have below:
CSS:
#mainContentWrapper
{
width:100%;
//No height is set intentionally to allow for dynamic div growth
}
Master Page:
<div id="mainContentWrapper">
<contentplaceholder></contentplaceholder1>
</div>
Data Page:
<contentplaceholder>
<telerik:radgrid></telerik:ragrid>
</contentplaceholder>
The problem is as soon as you do anything like change record display size from the client, it breaks out of the mainContentWrapper div instead of the forcing the div to expand like it should. This would work with any other functionality that isnt using the telerik controls so my assumption is that are some point in rendering the grid control is changed to be absolute and thus is placed above the div and will not adjust its size?
CSS:
#mainContentWrapper
{
width:100%;
//No height is set intentionally to allow for dynamic div growth
}
Master Page:
<div id="mainContentWrapper">
<contentplaceholder></contentplaceholder1>
</div>
Data Page:
<contentplaceholder>
<telerik:radgrid></telerik:ragrid>
</contentplaceholder>
The problem is as soon as you do anything like change record display size from the client, it breaks out of the mainContentWrapper div instead of the forcing the div to expand like it should. This would work with any other functionality that isnt using the telerik controls so my assumption is that are some point in rendering the grid control is changed to be absolute and thus is placed above the div and will not adjust its size?