This is a migrated thread and some comments may be shown as answers.

Rad AJax Manager causing Wrap of Labels

1 Answer 32 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Atchut
Top achievements
Rank 1
Atchut asked on 11 Jul 2012, 02:35 PM
Hello,

Here is my code

   <td align="right" width="20%"><asp:label id="LblID" runat="server" CssClass="BodyCopy" Visible="False"> ID: </asp:label>
                                   <asp:Label ID="lblReqField" runat="server" Text="*" ForeColor="Maroon" Font-Size="Medium" Visible="false"></asp:Label></td>
                                 
  <td align="left" width="30%"> 
                                   <asp:textbox id="TxtID" runat="server"  TextMode="SingleLine" Visible="false" MaxLength="10"></asp:textbox></td>

before using Rad Ajax manager, it is working fine and displaying in one row.

Now after adding the following Rad Ajax manager, ID and lblReqfield are displaying in two different rows but txtbox is displaying correct,
  <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="cmbPaymentTerms">
                <UpdatedControls>
             
                    <telerik:AjaxUpdatedControl ControlID="LblID" />
                     <telerik:AjaxUpdatedControl ControlID="lblReqField" />
                    <telerik:AjaxUpdatedControl ControlID="TxtID" />
                  
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="RbSFDCException">
                <UpdatedControls>
           
                    <telerik:AjaxUpdatedControl ControlID="LblID" />
                     <telerik:AjaxUpdatedControl ControlID="lblReqField" />
                    <telerik:AjaxUpdatedControl ControlID="TxtID" />
                 
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
       </telerik:RadAjaxManager>

1 Answer, 1 is accepted

Sort by
0
Casey
Top achievements
Rank 1
answered on 11 Jul 2012, 03:16 PM
Hi Atchut!

Try setting the UpdatePanelsRenderMode property of the RadAjaxManager to Inline, or you can do this for each telerik:AjaxUpdatedControl.

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
        UpdatePanelsRenderMode="Inline">

I hope this  helps!
Casey
Tags
Grid
Asked by
Atchut
Top achievements
Rank 1
Answers by
Casey
Top achievements
Rank 1
Share this question
or