I'm sure this is simple, but I could use someone to point me in the right direction. I noticed on certain columns there is a little green arrow in the top right corner and if you click on it you can have a text box with an explanation about what the column is. Is this something I can configure on other columns? How would I do that?

 

 

Like 0

Like

3 comments

Thank you Vladimir Sokolov!

 

Vladimir Sokolov,

 

Do you know if this is possible to add to a detail instead of a column? I tried to add it to the edit page schema using the bold code below, however nothing happened.

 

{

                "operation": "insert",

                "name": "VvtSchema7Detail478ac3c9",

                "values": {

                    "itemType": 2,

                    "markerValue": "added-detail"

                },

                "tip": {

                        "content": {

                            "bindTo": "Resources.Strings.DatabaseTipContent"

                        },

                        "displayMode": "wide"

                    },


                "parentName": "Tab51291de8TabLabel",

                "propertyName": "items",

                "index": 4

            }

Show all comments

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