Hello,
The best way to know when a new feature gets implemented is to click the Follow button. This will send you a notification email when there is movement on the page. We do keep the porta up to date, and our management reviews the popularity of the various items in it when prioritizing items for each release.
Regards,
Marin Bratanov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
I this simple attribute going to be implemented any soon?
Thank You.
Marek Istvanek
I need it as well.
For now I have implemented it in our derived button class by overriding RenderTree together with FocusAsync support.
Hi,
A workaround for the time being could be using a standard button and the Telerik classes to style it:
@using System.ComponentModel.DataAnnotations
<button type="submit" form="myForm" class="k-button k-primary">submit the form from outside</button>
<EditForm id="myForm" Model="@person" OnValidSubmit="@HandleValidSubmit">
<DataAnnotationsValidator />
<ValidationSummary />
<p class="name">
<label for="nameTextbox">Name:</label>
<TelerikTextBox @bind-Value="@person.Name" Id="nameTextbox"></TelerikTextBox>
<ValidationMessage For="@(() => person.Name)"></ValidationMessage>
</p>
<p class="height">
<label for="heightNumeric">Height (cm):</label>
<TelerikNumericTextBox @bind-Value="@person.Height" Id="heightNumeric" />
<ValidationMessage For="@(() => person.Height)"></ValidationMessage>
</p>
</EditForm>
@code {
// Usually this class would be in a different file
public class Person
{
[Required(ErrorMessage = "Enter a name")]
[StringLength(10, ErrorMessage = "That name is too long")]
public string Name { get; set; }
[Required(ErrorMessage = "Provide your height in centimeters")]
[Range(1, 300, ErrorMessage = "Nobody is that tall")]
public int? Height { get; set; }
}
Person person { get; set; } = new Person();
void HandleValidSubmit()
{
Console.WriteLine("OnValidSubmit");
}
}
Regards,
Marin Bratanov
Progress Telerik