Hi,
- I am using version 2012.3.1016.35 of the ASP.NET AJAX dll.
GOAL:
- I dynamically create and add System.Web.UI.WebControls to my page. Specifically, I dynamically create a Table and add TableRows and add TableCells.
- I want to Tooltipify the tooltips on the TableCells, with the RadToolTipManager
- In code-behind, I set the Tooltip property of my TableCell, then I add it to the TargetControls collection as follows:
rttm.TargetControls.Add(MyDynamicTableCell.ClientID, True)
PROBLEM:
- My tooltips are being displayed as the traditional browser tooltips, instead of Rad Tooltips.
- Here is my TooltipManager declaration:
Q. Is it possible to tooltipify dynamically created controls?
Q. If so, what might I be doing wrong?
Thanks,
Brent
- I am using version 2012.3.1016.35 of the ASP.NET AJAX dll.
GOAL:
- I dynamically create and add System.Web.UI.WebControls to my page. Specifically, I dynamically create a Table and add TableRows and add TableCells.
- I want to Tooltipify the tooltips on the TableCells, with the RadToolTipManager
- In code-behind, I set the Tooltip property of my TableCell, then I add it to the TargetControls collection as follows:
rttm.TargetControls.Add(MyDynamicTableCell.ClientID, True)
PROBLEM:
- My tooltips are being displayed as the traditional browser tooltips, instead of Rad Tooltips.
- Here is my TooltipManager declaration:
<telerik:RadToolTipManager ID="rttm" runat="server" Sticky="false" HideDelay="1000" AutoCloseDelay="6000" Width="260" Skin="Vista" RelativeTo="Element" Position="MiddleRight" ShowDelay="700" AutoTooltipify="True"> <TargetControls> <telerik:ToolTipTargetControl TargetControlID="btnEditSaveAllT" IsClientID="false" /> <telerik:ToolTipTargetControl TargetControlID="btnActionsSaveExitT" IsClientID="false" /> <telerik:ToolTipTargetControl TargetControlID="btnActionsCancelT" IsClientID="false" /> <telerik:ToolTipTargetControl TargetControlID="btnActionsLockAllT" IsClientID="false" /> <telerik:ToolTipTargetControl TargetControlID="btnActionsEditTTIt" IsClientID="false" /> <telerik:ToolTipTargetControl TargetControlID="btnActionsAdd" IsClientID="false" /> <telerik:ToolTipTargetControl TargetControlID="ExportLabel" IsClientID="false" /> <telerik:ToolTipTargetControl TargetControlID="btnActionsAddA" IsClientID="false" /> <telerik:ToolTipTargetControl TargetControlID="bowlerTableStateSave" IsClientID="false" /> </TargetControls></telerik:RadToolTipManager>Q. Is it possible to tooltipify dynamically created controls?
Q. If so, what might I be doing wrong?
Thanks,
Brent