Completed
Last Updated: 23 Sep 2014 13:02 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 22 Oct 2013 07:42
Category: MultiColumnCombo
Type: Bug Report
1
FIX. RadGridView inside RadMultiColumnComboBox does not show tooltips
To reproduce:
-add RadMultiColumnComboBox and bind it to some collection. Use the following code:

radMultiColumnComboBox1.MultiColumnComboBoxElement.EditorControl.ShowItemToolTips = true;
radMultiColumnComboBox1.MultiColumnComboBoxElement.EditorControl.ToolTipTextNeeded += EditorControl_ToolTipTextNeeded;

private void EditorControl_ToolTipTextNeeded(object sender, Telerik.WinControls.ToolTipTextNeededEventArgs e)
        {
           e.ToolTipText ="some text";
        }

As a result the tool tip is not shown.

Workaround:use ScreenTipNeeded event instead
2 comments
ADMIN
Stefan
Posted on: 23 Sep 2014 13:02
This item has been resolved in Q1 2014 - have a look at its status. You should upgrade to the latest version in order to take advantage of the fix. 

If you are using earlier version, please contact our support team with the precise case you have and they will check if a suitable solution exists.
Sandeep
Posted on: 22 Sep 2014 09:52
any sample? or working code article reference.
i didnt see any working code against above context.