Hello,
I configured tooltip texts in menuitems of the Startmenue or the Options-Button. In older versions they have been working, but now there is no tooltip appearing anymore.
I set the property AutoToolTip in Ribbon-Control and in the RadMenueItems, theText in ToolTipText.
thanks for any help,
Frank
I configured tooltip texts in menuitems of the Startmenue or the Options-Button. In older versions they have been working, but now there is no tooltip appearing anymore.
I set the property AutoToolTip in Ribbon-Control and in the RadMenueItems, theText in ToolTipText.
thanks for any help,
Frank
7 Answers, 1 is accepted
0
Hi Frank,
Thank you for writing.
This is a known issue in Q1 2011 which is already in our issue tracking system and we will address in the upcoming Service Pack.
I hope you find the provided information helpful.
Greetings,
Stefan
the Telerik team
Thank you for writing.
This is a known issue in Q1 2011 which is already in our issue tracking system and we will address in the upcoming Service Pack.
I hope you find the provided information helpful.
Greetings,
Stefan
the Telerik team
0

GIAnet
Top achievements
Rank 2
Iron
answered on 20 Apr 2011, 03:52 PM
Hello,
i just update with 2011.1.11.419. Unfortunatley the tooltips in the Items of the Startmenue are still not working.
A similiar problem is getting Tooltips in a RadDropDownList, because there is no more property in RadListDataItem.
We tried that:
private void radDropDownList1_VisualListItemFormatting(object sender, Telerik.WinControls.UI.VisualItemFormattingEventArgs args)
{
args.VisualItem.ToolTipText = args.VisualItem.Text;
}
but it does not work.
When I create a new project with new controls and configure them in a same way, then it works.
thanks for any help,
Frank
i just update with 2011.1.11.419. Unfortunatley the tooltips in the Items of the Startmenue are still not working.
A similiar problem is getting Tooltips in a RadDropDownList, because there is no more property in RadListDataItem.
We tried that:
private void radDropDownList1_VisualListItemFormatting(object sender, Telerik.WinControls.UI.VisualItemFormattingEventArgs args)
{
args.VisualItem.ToolTipText = args.VisualItem.Text;
}
but it does not work.
When I create a new project with new controls and configure them in a same way, then it works.
thanks for any help,
Frank
0
Hello Frank,
Thank you for the feedback.
We did not manage to include this fix in the latest SP1 release. We will try to include it in the next Internal Build release. I will write back when I can provide you with a time frame regarding this build.
Best wishes,
Peter
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0

GIAnet
Top achievements
Rank 2
Iron
answered on 03 May 2011, 12:12 PM
Hello,
I just tried the latest internal build. The tooltips are working know.
Unfortunatley, I have a new problem:
I get a NullReferenceException in the line:
lRadTreeNodeStart.Nodes.AddRange(lRadTreeNodeArray);
The same code was working with Build 315.
the whole code is:
I just tried the latest internal build. The tooltips are working know.
Unfortunatley, I have a new problem:
I get a NullReferenceException in the line:
lRadTreeNodeStart.Nodes.AddRange(lRadTreeNodeArray);
the whole code is:
RadTreeView lRadTreeView = new RadTreeView();
lRadTreeView.LoadXML(mProjectPath + "." + iKonnektorName + BBMGlobals.ExternWSXMLFileSuffix);
RadTreeNode lRadTreeNode = new RadTreeNode();
lRadTreeNode = Funktionen.GetDeepestNode(lRadTreeView).Parent;
Frank
lRadTreeView.LoadXML(mProjectPath + "." + iKonnektorName + BBMGlobals.ExternWSXMLFileSuffix);
RadTreeNode lRadTreeNode = new RadTreeNode();
lRadTreeNode = Funktionen.GetDeepestNode(lRadTreeView).Parent;
RadTreeNode lRadTreeNodeStart = new RadTreeNode("Test");
RadTreeNode[] lRadTreeNodeArray = new RadTreeNode[lRadTreeNode.Nodes.Count];
lRadTreeNode.Nodes.CopyTo(lRadTreeNodeArray, 0);
lRadTreeNodeStart.Nodes.AddRange(lRadTreeNode);
thanks for any help...RadTreeNode[] lRadTreeNodeArray = new RadTreeNode[lRadTreeNode.Nodes.Count];
lRadTreeNode.Nodes.CopyTo(lRadTreeNodeArray, 0);
lRadTreeNodeStart.Nodes.AddRange(lRadTreeNode);
Frank
0
Hello Frank,
I hope this information is useful. Let me know if you need further assistance.
Regards,
Julian Benkov
the Telerik team
Please check your lRadTreeNode instance for null or lRadTreeNode.Nodes.Count before the adding operation. Here is a small example:
RadTreeView lRadTreeView =
new
RadTreeView();
lRadTreeView.LoadXML(mProjectPath +
"."
+ iKonnektorName + BBMGlobals.ExternWSXMLFileSuffix);
RadTreeNode lRadTreeNode =
new
RadTreeNode();
lRadTreeNode = Funktionen.GetDeepestNode(lRadTreeView).Parent;
if
(lRadTreeNode !=
null
&& lRadTreeNode.Nodes.Count > 0)
{
RadTreeNode lRadTreeNodeStart =
new
RadTreeNode(
"Test"
);
RadTreeNode[] lRadTreeNodeArray =
new
RadTreeNode[lRadTreeNode.Nodes.Count];
lRadTreeNode.Nodes.CopyTo(lRadTreeNodeArray, 0);
lRadTreeNodeStart.Nodes.AddRange(lRadTreeNode);
}
I hope this information is useful. Let me know if you need further assistance.
Regards,
Julian Benkov
the Telerik team
0

GIAnet
Top achievements
Rank 2
Iron
answered on 05 May 2011, 04:28 PM
Hello,
the nodes are not null. I told you, that it works with the old Version of Rad-Controls.
I extract a test-project , so you can see the error, but I cannot send it to you. Please open a ticket.
We are waiting for a solution since 5 weeks now. It is really annoying.
thank you,
Frank
the nodes are not null. I told you, that it works with the old Version of Rad-Controls.
I extract a test-project , so you can see the error, but I cannot send it to you. Please open a ticket.
We are waiting for a solution since 5 weeks now. It is really annoying.
thank you,
Frank
0
Hi Frank,
Nikolay
the Telerik team
As a customer you can open a new support ticket by following this path: Your Account >> Quick Links menu situated on the right of the page >> Get Support >> Step 3: Still have questions? >> Contact Support Team >> RadControls for WinForms >> Submit Ticket.
We are looking forward to receiving your project.
Nikolay
the Telerik team