Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tooltips on Table Extensions not displayed in client #7932

Open
4 of 6 tasks
PeterConijn opened this issue Dec 12, 2024 · 1 comment
Open
4 of 6 tasks

Tooltips on Table Extensions not displayed in client #7932

PeterConijn opened this issue Dec 12, 2024 · 1 comment

Comments

@PeterConijn
Copy link

Please include the following with each issue:

1. Describe the bug
This bug might be related to #7778. If you place a tooltip on a table extension, it does not show in the client when hovering over the field.

2. To Reproduce

  1. Create a table extension with a new field
  2. Add a caption and tooltip on the table extension
  3. Create a page extension for showing the new field, but do not place a tooltip on the page extension
  4. Publish your app and navigate to the page you extended
  5. Hover your cursor over the field you added
  6. Spend 0.3 seconds in anticipation of the tooltip popping up
  7. Note that the caption is displayed in the tooltip balloon, but not the tooltip
tableextension 50324 Vendor extends Vendor
{
    fields
    {
        field(50320; "Name 3"; Text[50])
        {
            Caption = 'Name 3';
            ToolTip = 'Specifies the third name of the vendor.';
            DataClassification = CustomerContent;
        }
    }
}


pageextension 50321 "Vendor Card" extends "Vendor Card"
{
    layout
    {
        addafter("Name 2")
        {
            field("Name 3"; Rec."Name 3")
            {
                ApplicationArea = All;
            }
        }
    }
}

Note: Because the developers need to copy and paste the code snippet, including a code snippet as a media file (i.e. .gif) is not sufficient.

3. Expected behavior
I would expect the tooltip to show

4. Actual behavior
The tooltip is not showing

5. Versions:

  • AL Language: 14.2.1249978
  • Visual Studio Code: 1.96.0
  • Business Central: 25.1.25873.27757
  • Operating System:
    • Windows
    • Linux
    • MacOS

Test on browsers:
[x] Firefox
[x] Chrome

Final Checklist

Please remember to do the following:

  • Search the issue repository to ensure you are reporting a new issue

  • Reproduce the issue after disabling all extensions except the AL Language extension

  • Simplify your code around the issue to better isolate the problem

@nndobrev nndobrev added requires-triage web-client An issue that requires a change in the web client. metadata and removed web-client An issue that requires a change in the web client. labels Dec 23, 2024
@neverbeam
Copy link

We run into the same issue as PeterConijn

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants