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

Tooltip image moving to next line

1 Answer 62 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Susan
Top achievements
Rank 1
Susan asked on 02 Nov 2008, 04:10 PM
i am using radajaxmanager and radtooltip on the same page. if i take out the radajaxmanager, my tooltip image is a few spaces to the right of my control. if i add the radajaxmanager in, the tooltip image gets move to right underneath the control. why is this? below is a partial snapshot of the code:

 

<tr>

 

 

<td class="Normal" style="padding-left:10px;">League<font color="red">*</font></td>

 

 

<td class="Normal">

 

 

<telerik:RadComboBox CausesValidation="false" TabIndex="2" Skin="WebBlue" ID="cmbLeague" Width="150px" runat="server" MarkFirstMatch="true" AllowCustomText="false" ShowDropDownOnTextboxClick="true" />&nbsp;&nbsp;&nbsp;

 

 

<asp:Image AlternateText="" ID="hlpLeague" ImageUrl="../images/help.png" runat="server" />

 

 

<asp:requiredfieldvalidator cssclass="Normal" controltovalidate="cmbLeague" errormessage="Required." display="dynamic" runat="server" ID="rfvLeague"/></td>

==========================

 

 

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableAJAX="true">

 

 

 

 

<AjaxSettings>

 

 

 

 

<telerik:AjaxSetting AjaxControlID="filterLeague">

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="TeamGrid"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

</telerik:AjaxSetting>

 

 

 

 

<telerik:AjaxSetting AjaxControlID="filterCity">

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="TeamGrid"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

</telerik:AjaxSetting>

 

 

 

 

<telerik:AjaxSetting AjaxControlID="TeamGrid">

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="cmbLeague"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="chkPrepaidTeamRegistration"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="NameOfTeam"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="PrepaidAmount"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="cmbCity"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="AmountPaid"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="TeamColors"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="chkAllowOnRegistration"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="TeamDivision"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="RegistrationPassword"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

<UpdatedControls>

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="btnCancel"></telerik:AjaxUpdatedControl>

 

 

 

 

</UpdatedControls>

 

 

 

 

</telerik:AjaxSetting>

 

 

 

 

</AjaxSettings>

 

 

 

 

</telerik:RadAjaxManager>

 

 

 

 

 

=====================================



1 Answer, 1 is accepted

Sort by
0
Sebastian
Telerik team
answered on 05 Nov 2008, 11:35 AM
Hi Susan,

Can you please check whether setting the UpdatePanelsRenderMode property of the RadAjaxManager to Inline alleviates the discrepancy (the default value of this property is Block)? Thus the update panels which wrap the updated controls defined through the ajax setting will be rendered as inline elements.

Kind regards,
Stephen
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Ajax
Asked by
Susan
Top achievements
Rank 1
Answers by
Sebastian
Telerik team
Share this question
or