-
Notifications
You must be signed in to change notification settings - Fork 459
Closed
Labels
triageNew issue. Needs to be looked atNew issue. Needs to be looked at
Description
🙋 Feature Request
A title tooltip on FluentAccordionItem needs to be on the heading div. A value set inside the HeadingTemplate doesn't work.
Unfortunately, there isn't a way to set title on that div:
| @if (Heading is not null) | |
| { | |
| <span slot="heading">@Heading</span> | |
| } | |
| else | |
| { | |
| <div slot="heading"> | |
| @HeadingTemplate | |
| </div> | |
| } |
Setting title on FluentAccordionItem itself adds the title to item header and body.
🤔 Expected Behavior
A way to setting tooltip on just the header.
😯 Current Behavior
Can't
💁 Possible Solution
Add FluentAccordionItem.HeadingTooltip that sets tooltip on the div here:
| @if (Heading is not null) | |
| { | |
| <span slot="heading">@Heading</span> | |
| } | |
| else | |
| { | |
| <div slot="heading"> | |
| @HeadingTemplate | |
| </div> | |
| } |
🔦 Context
💻 Examples
Metadata
Metadata
Assignees
Labels
triageNew issue. Needs to be looked atNew issue. Needs to be looked at