I am migrating to RadControls for ASP.Net Ajax version 2008.2.826.20.
A div panel is generated around any control that is the target of an update. Because the div is set with style="DISPLAY: block", it is causing the page to render incorrectly in many situations. There is no class defined on the generated div. Is there a way to control this behavior?
For example:
2 labels which should be showing up next to each other are on separate lines
<TD><SPAN class=StandardText id=ctl00_Content_Label3>Count:</SPAN>
<DIV id=ctl00_ctl00_Content_lblSampleCountPanel style="DISPLAY: block"><SPAN class=StandardText id=ctl00_Content_lblSampleCount>1</SPAN></DIV></TD></TR>
Also, I have a section of hidden variables, some of which are the target of an update. All of the sudden after an ajax request, these hidden variables are taking up space on the screen.
A div panel is generated around any control that is the target of an update. Because the div is set with style="DISPLAY: block", it is causing the page to render incorrectly in many situations. There is no class defined on the generated div. Is there a way to control this behavior?
For example:
2 labels which should be showing up next to each other are on separate lines
<td>
<asp:Label CssClass="StandardText" ID="Label3" runat="server" Text="<%$Resources: SampleCount %>"></asp:Label>
<asp:Label CssClass="StandardText" ID="lblSampleCount" runat="server" Text="0"></asp:Label>
</td>
Rendered as:
<TD><SPAN class=StandardText id=ctl00_Content_Label3>Count:</SPAN>
<DIV id=ctl00_ctl00_Content_lblSampleCountPanel style="DISPLAY: block"><SPAN class=StandardText id=ctl00_Content_lblSampleCount>1</SPAN></DIV></TD></TR>
Also, I have a section of hidden variables, some of which are the target of an update. All of the sudden after an ajax request, these hidden variables are taking up space on the screen.