Thank you for the sample project. However, my problem still exists. Here is a snippet of the code. It is very similar to the code attached to this post. However, if I put a breakpoint on the last line, button.ClientID is null so it does not find the control on the client side and I get the standard tooltip over the buttons rather than the fancy Telerik tooltip. Is one of the settings below causing this problem?
Thanks!
RadToolbarButton button = new RadToolbarButton(); |
button.EnableViewState = false; |
button.CommandName = "help" + kvp.Key; |
button.ButtonImage = "../../../../../Images/widget-help.gif"; |
button.DisplayType = RadToolbarButton.ButtonDisplayType.ImageOnly; |
string tip = dtWidgets.DefaultView[0]["description"].ToString(); |
button.ToolTip = tip; |
kvp.Value.Items.Add(button); |
this.RadToolTipManagerHelp.TargetControls.Add(kvp.Value.ClientID + "_" + button.ClientID, true); |
|