Show tool tip on mouse hover for actions buttons on Section grid

Hi Community,

Any idea how we can show tool tip on mouse hover for action buttons on Section grid

          {

                "operation": "merge",

                "name": "DataGridActiveRowOpenAction",

                "parentName": "DataGrid",

                "propertyName": "activeRowActions",

                "values": {

                    "className": "Terrasoft.Button",

                    "style": Terrasoft.controls.ButtonEnums.style.BLUE,

                    "caption": "Open",

                    "tag": "Open",

                    "visible": true

                },

            },

 

 

Like 0

Like

4 comments

Dear Fulgen,

There is a perfect Academy article here that will fit your needs. This article describes how to add pop-up hints to buttons and will be very useful for you.

Best regards,

Oscar

Hi Oscar!

I tried using the code written in the article and I can see the tooltip only for one time, if I navigate to another contact or cancel and then go back the tooltip does not appear anymore.

If I refresh the page it shoes it again but only if refreshed the contact edit page and again the minute I leave the page I can't see it anymore until refreshing again.

Can you or someone else advise?

Oscar Dylan,

Chani Karel,

Hello!

 

Can you please provide us with the code itself that you've used when creating tips? To which entity have you added the tip?

 

I've added a test tip to the contact email address column and it is displayed correctly and doesn't disappear:

{
				"operation": "merge",
				"name": "AccountEmail",
				"values": {
					"layout": {
						"colSpan": 24,
						"rowSpan": 1,
						"column": 0,
						"row": 5
					},
                  "tip": {
                    "content": { "bindTo": "Resources.Strings.EmailTipContent" },
                    "displayMode": Terrasoft.controls.TipEnums.displayMode.WIDE
                  }
				}
			},

Best regards,

Oscar

Oscar Dylan,

Hi, Thank you!

I add the tip to the save button of the opportunity entity.

this is the code I use :

 

    "operation": "merge",

                "parentName": "LeftContainer",

                "propertyName": "items",

                "name": "SaveButton",

                "values": {

                    // Pop-up hint for a button.

                    "hint": { "bindTo": "Resources.Strings.ToolTip" } ,

                }

 

The code you provided is for a field tooltip, that one works from the article too.

The problem happens only with the tooltip for button.

In the article the button is example # 1 and the field is example # 2.

Thank you so much!

Show all comments