Afternoon guys,
I have been having fun with RadToolTips but have run into a completely bazaar situation... I am not even really sure how to debug this, i do not quite know how this is happening... Let me try explain:
First of all, i am building a SiteFinity website so there are no aspx pages, just ascx controls that make up my site...
Ok so i have two controls FlightPassengers.ascx and ReservationDetails.ascx.
FlightPassengers.ascx has a form on it where a user can enter data, it has RadDatePickers and RadAjaxPanel and performs partial page updates when certain actions are performed...
ReservationDetails.ascx is where i have my RadToolTipManager control... the control is built to LoadOnDemand and i have EXPLICITLY told it to NOT AutoTooltipify anything... OnAjaxUpdate it loads up my user control and displays data based on the parameter i pass it... The control looks like this and works like a charm...
Now all is well until FlightPassengers.ascx performs a partial page update of itself. After which anything on this control that has a tooltip (like the RadDatePicker) from then on out runs the RadToolTipManager (ttmAirportInfo) that i have on my other control (ReservationDetails.ascx)
Why? and how do i make it stop doing this?
Duncan
I have been having fun with RadToolTips but have run into a completely bazaar situation... I am not even really sure how to debug this, i do not quite know how this is happening... Let me try explain:
First of all, i am building a SiteFinity website so there are no aspx pages, just ascx controls that make up my site...
Ok so i have two controls FlightPassengers.ascx and ReservationDetails.ascx.
FlightPassengers.ascx has a form on it where a user can enter data, it has RadDatePickers and RadAjaxPanel and performs partial page updates when certain actions are performed...
ReservationDetails.ascx is where i have my RadToolTipManager control... the control is built to LoadOnDemand and i have EXPLICITLY told it to NOT AutoTooltipify anything... OnAjaxUpdate it loads up my user control and displays data based on the parameter i pass it... The control looks like this and works like a charm...
<rad:RadToolTipManager ID="ttmAirportInfo" OnAjaxUpdate="ttmAirportInfo_OnAjaxUpdate" SkinID="sknRadToolTipManager_AirportInfo" AutoTooltipify="false" runat="server" /> |
Now all is well until FlightPassengers.ascx performs a partial page update of itself. After which anything on this control that has a tooltip (like the RadDatePicker) from then on out runs the RadToolTipManager (ttmAirportInfo) that i have on my other control (ReservationDetails.ascx)
Why? and how do i make it stop doing this?
Duncan