Is it possible to just wrap the default inline grid editor with some additional markup? I want some html added inside.
If not, then how do I get the tool tip validator?
<GridColumn Field=@nameof(Person.Name) Context="pxxx">
<EditorTemplate>
<TelerikTextBox @bind-Value=@(((Person)pxxx).Name)/>
Some additional HTML here
</EditorTemplate>
</GridColumn>
Thanks!