i have a combobox that shows data previously entered by users. Therefore the length of the entries shown is potentially longer than what can be displayed in the combobx without clipping/shortening. Adapting the size of the combobox to the length of the content is not an option because auf screen space limitations.
It would be nice to be able to have an indiviual mouseover tooltip for every item in the combobox. that way one could see the unclipped/unshortened data as tooltip.
Another approach is to create custom component using Grid as item list (e.g. with PopupButton add-on), since it has setDescriptionGenerator(…) method and mechanics for having tooltips on individual items.