Duplicated
Last Updated: 23 Aug 2022 07:36 by ADMIN
Thomas
Created on: 17 Feb 2021 18:11
Category: UI for Blazor
Type: Feature Request
1
Add Title parameter to all inputs

At the moment only the TelerikTextBox has a Title parameter that I can use to add a tooltip to it.

---

ADMIN EDIT

A workaround for the others can be wrapping them in another HTML element whose title attribute you can use.

Here is an example with the checkbox:

<span title="the checkbox title">
    <TelerikCheckBox @bind-Value="@theBool"></TelerikCheckBox>
</span>
@code{
    bool theBool { get; set; }
}

---

Duplicated
This item is a duplicate of an already existing item. You can find the original item here:
0 comments