Use of an SFtoolTip with a NumericUpDownControl

It appears the SFToolTip does not work when used with a NumericUpDown control. 


toolTip.SetToolTip(updownControl, "Custom tooltip does not ever appear.");


3 Replies 1 reply marked as answer

DM Dhanasekar Mohanraj Syncfusion Team June 27, 2022 02:13 PM UTC

Hi Tim,

We have checked the reported issue in our end. By default, NumericUpDown control is in editor element, and we suspect that you are hovering over the edit element area that’s why the reported issue occurs. When you hover over the edit textbox, edit cursor will be shown and while hover over the updown arrow controls, the default hovering effects works. If you hover the control exactly like hover the border of the NumericUpDown control the SfToolTip shown properly. Here we have attached the tested sample and video demo for the reported issue. Please have a look on this. If you are still facing the same issue, modify the attached sample based on your requirement. It will be helpful for us to check the cause of the issue and to provide a solution at the earliest.

Regards,
Dhanasekar M.


Attachment: Sample__Video_Demo_a7f67cf8.zip


TI Tim June 28, 2022 02:00 AM UTC

Very much did not like having to hover over just the bare border of the control. I fisgured out a better way:


_tooltip.SetToolTip(portNumber, "Tooltip for portnumber");
_tooltip.SetToolTip(portNumber.Controls[0], "Tooltip for portnumber");
_tooltip.SetToolTip(portNumber.Controls[1], "Tooltip for portnumber");

This way the hover works normally as expected anywhere in the control.


Marked as answer

DM Dhanasekar Mohanraj Syncfusion Team June 28, 2022 01:59 PM UTC

Hi Tim,

We are glad to know the reported issue resolved in your end. Please let us know if you have any further queries on this. Otherwise please mark it as an answer.

We are happy to help you.

Regards,
Dhanasekar M.


Loader.
Up arrow icon