Add tooltip to button in Razor Page using Attributes

Hi
I know a similar question has been asked before but the answer says you need to add an Attributes property. I am not using the Radzen Builder application but am using a Razor page (after creating a Blazor app using the default Visual Studio tooling).

Please can you tell me what the syntax is for creating a tooltip on a button. Some code below - I need to know what I replace the ??? with?

Thanks

1 Like

You need to use the title html attribute.

<RadzenButton title="My title" />

Also if you are not use Radzen for Blazor do not use that category - use Blazor components instead.

1 Like

Thank you fo the quick response - that woks great :slight_smile:

1 Like