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

Tooltip not working

7 Answers 185 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
GIAnet
Top achievements
Rank 2
Iron
GIAnet asked on 30 Mar 2011, 08:21 AM
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

7 Answers, 1 is accepted

Sort by
0
Stefan
Telerik team
answered on 01 Apr 2011, 09:32 AM
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
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
0
Peter
Telerik team
answered on 22 Apr 2011, 01:57 PM
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:

                RadTreeView lRadTreeView = new RadTreeView();
                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...
Frank
0
Julian Benkov
Telerik team
answered on 05 May 2011, 12:26 PM
Hello Frank,

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
Q1’11 SP1 of RadControls for WinForms is available for download; also available is the Q2'11 Roadmap for Telerik Windows Forms controls.
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
0
Nikolay
Telerik team
answered on 09 May 2011, 09:25 AM
Hi Frank,

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.

Regards,
Nikolay
the Telerik team
Q1’11 SP1 of RadControls for WinForms is available for download; also available is the Q2'11 Roadmap for Telerik Windows Forms controls.
Tags
RibbonBar
Asked by
GIAnet
Top achievements
Rank 2
Iron
Answers by
Stefan
Telerik team
GIAnet
Top achievements
Rank 2
Iron
Peter
Telerik team
Julian Benkov
Telerik team
Nikolay
Telerik team
Share this question
or