Hello,
how can I attach a tooltipp to a ValueListItem in the UltraComboEditor's Items list?
The text should be displayed beside the highlighted item, regardless whether it is highlighted by the mouse or keyboard.
You could use UltraTooltipManager in order to display tooltip whenever and where you want. Specifically for ValueListItem of UltraComboEditor, you could handle DrawValueListItem event of ValueList and based on the e.DrawItemEventArgs.State to display your tooltip. I have implemented this approach in the attached sample.
Please let me know if you have any further questions
thank you Hristo,
exact what I was looking for.
One question:It works only if there is enough place under the Combo.The tooltip is showed always under the Combo, even if the dropdown area is above the Combo.How to handle that situation?