With using the Grid, I have several GridCommandButtons. Instead of displaying the button with an icon followed by text, I wanted to display just the icon and use the TelerikTooltip to display the text on hover. When I set the GridCommandButton.Title and inspect the DOM, there is no title attribute on the button even though the description of the GridCommandButton.Title property reads "The title attribute of the Button".
<TelerikGrid @ref="@Grid"
Data="@Data"
Pageable="true"
Groupable="false"
Sortable="true"
FilterMode="GridFilterMode.FilterMenu"
Resizable="true"
Reorderable="true"
EditMode="GridEditMode.Popup"
SelectionMode="GridSelectionMode.Multiple"
PageSize="5"
OnUpdate="@UpdateHandler"
OnDelete="@DeleteHandler">
<GridColumns>
<GridColumn Field="@nameof(UserInfo.UserName)" Title="User Name" Width="100px" />
<GridColumn Field="@nameof(UserInfo.Email)" Width="100px" />
<GridColumn Field="@nameof(UserInfo.FirstName)" Title="First Name" Width="100px" />
<GridColumn Field="@nameof(UserInfo.LastName)" Title="Last Name" Width="100px" />
<GridColumn Field="@nameof(UserInfo.PhoneNumber)" Title="Phone #" Width="100px" />
<GridCommandColumn Width="190px">
<GridCommandButton Command="Save" Icon="save" ShowInEdit="true">Save</GridCommandButton>
<GridCommandButton
Title="Edit" Command="Edit" Icon="edit"></GridCommandButton>
<GridCommandButton
Title="Delete" Command="Delete" Icon="delete"></GridCommandButton>
<GridCommandButton Command="Cancel" Icon="cancel" ShowInEdit="true">Cancel</GridCommandButton>
<GridCommandButton
Title="Reset Password" OnClick="@((args) => ResetPasswordModal.Show(((UserInfo)args.Item).Id))" Icon="@IconName.Lock"></GridCommandButton>
<GridCommandButton>Roles</GridCommandButton>
<GridCommandButton>Profiles</GridCommandButton>
</GridCommandColumn>
</GridColumns>
<GridToolBar>
<GridCommandButton
Title="Refresh" OnClick="@LoadData" Icon="@IconName.Reload"></GridCommandButton>
<GridCommandButton
Title="Add User" OnClick="@(() => CreateUserModal.Show())" Icon="add"></GridCommandButton>
</GridToolBar>
</TelerikGrid>