Hi,
We're using an UltraCombo in our application. One of the columns has text data that is fairly long. When the combo is dropped down, the data appears with the overflow indicator (ellipsis) but moving the cursor over it does not show the rest of the text, as it should.
Is there another property that has to be set in order for the expected behavior to work?
Thanks for any information.
Steve
Thanks very much!
Hi Steve,
Unlike the grid, the UltraCombo has cell tips disabled by default. So you just need to turn them on.
this.ultraCombo1.DisplayLayout.Override.TipStyleCell = TipStyle.Show;