Hello,
When I use RadAjaxManager it breaks my page.
My controls are on the same line (to be embedded in a HTML Table later) but after RadAjaxManager'ed them, there is a line break on the screen after each control because there is a div created for each control by the Manager.
<div style="width: 100%">
<asp:Label ID="Label27" runat="server" Text="Label"></asp:Label>
<telerik:RadComboBox ID="RadComboBox1" runat="server">
<Items>
<telerik:RadComboBoxItem runat="server" Text="Aucun" />
</Items>
<CollapseAnimation Duration="200" Type="OutQuint" />
</telerik:RadComboBox>
<asp:Button ID="Button2" runat="server" Text="Button" /> <asp:Button ID="Button3"
runat="server" Text="Button" /></div>
In browser :
...
<div id="ctl00_ContentPlaceHolder1_MajHoraires1_ctl00_ContentPlaceHolder1_MajHoraires1_Button2Panel">
<input type="submit" name="ctl00$ContentPlaceHolder1$MajHoraires1$Button2" value="Button" id="ctl00_ContentPlaceHolder1_MajHoraires1_Button2" />
</div> <div id="ctl00_ContentPlaceHolder1_MajHoraires1_ctl00_ContentPlaceHolder1_MajHoraires1_Button3Panel">
<input type="submit" name="ctl00$ContentPlaceHolder1$MajHoraires1$Button3" value="Button" id="ctl00_ContentPlaceHolder1_MajHoraires1_Button3" />
</div>
...
How can I bypass this problem ?
Thanks
When I use RadAjaxManager it breaks my page.
My controls are on the same line (to be embedded in a HTML Table later) but after RadAjaxManager'ed them, there is a line break on the screen after each control because there is a div created for each control by the Manager.
<div style="width: 100%">
<asp:Label ID="Label27" runat="server" Text="Label"></asp:Label>
<telerik:RadComboBox ID="RadComboBox1" runat="server">
<Items>
<telerik:RadComboBoxItem runat="server" Text="Aucun" />
</Items>
<CollapseAnimation Duration="200" Type="OutQuint" />
</telerik:RadComboBox>
<asp:Button ID="Button2" runat="server" Text="Button" /> <asp:Button ID="Button3"
runat="server" Text="Button" /></div>
In browser :
...
<div id="ctl00_ContentPlaceHolder1_MajHoraires1_ctl00_ContentPlaceHolder1_MajHoraires1_Button2Panel">
<input type="submit" name="ctl00$ContentPlaceHolder1$MajHoraires1$Button2" value="Button" id="ctl00_ContentPlaceHolder1_MajHoraires1_Button2" />
</div> <div id="ctl00_ContentPlaceHolder1_MajHoraires1_ctl00_ContentPlaceHolder1_MajHoraires1_Button3Panel">
<input type="submit" name="ctl00$ContentPlaceHolder1$MajHoraires1$Button3" value="Button" id="ctl00_ContentPlaceHolder1_MajHoraires1_Button3" />
</div>
...
How can I bypass this problem ?
Thanks