Hi
When we plot an area series on the same chart as a line series we find that the area series no longer fills the full width of the chart, as shown below. Here is a REPL with the code to reproduce it.
Is there a way to restore the behaviour of the area series, like this?
Thank you
Mark
Is it possible to disable the movement to the next row when a user uses the enter key to edit a field with in-cell editing?
I looked through the forums but only found an old thread regarding a WinForms property for an EnterKeyMode. This would be a great addition to the Blazor controls.
I have recently downloaded the latest Telerik.UI for blazor 5.0.1 commercial and I tried converting a dotnet 8 project to a telerik project using the context menu.
Is there a plan to have support for the new .NET 8 project templates?
The option to also create a new blazor project from the Visual Studio 2022 project templates is gone. I cannot create a blazor project.
I saw the "Discover the Magic of .NET 8 and Beyond!" webinar and it seemed support for .NET 8 was ready
Is there any way to add your own columns to the list view of the file manager in addition to the default columns, or are you limited to the default columns of name, date created and file size?
In general, how easy is it to customize the appearance and data displayed? Is it easy to extend the component with custom behavior?
i would like to make separate control telerik form to update the grid. How to associate this new control with a grid?
regards,
Djole
Hi,
I use a TelerikGrid relying on FluentValidator.
Validation works fine when users manually edit a grid value.
But I do not manage to trigger it after the grid loads (so users can view possible incorrect values after DB loading).
I have tried 2 different ways, both without success.
1) using validation at Grid level.
Well I basically replicated your demo:
https://docs.telerik.com/blazor-ui/components/grid/editing/validation
2) using a TelerikForm inside the (only cell) that needs to be validated.
Something like this:
<TelerikGrid @ref="@_gridRef"
TItem="MyDto"
Data="@MyItems">
<GridSettings>
<GridValidationSettings>
<ValidatorTemplate>
<FluentValidationValidator Validator=@_validator />
</ValidatorTemplate>
</GridValidationSettings>
</GridSettings>
<GridColumns>
[...]
<GridColumn Field="@nameof(MyDto.MyProp)" Title="My Prop"Context="ctx">
<Template>
<EditForm Model="@ctx">
<FluentValidationValidator Validator=@_validator/>
<TelerikTextBox @bind-Value="@((ctx as MyDto).MyProp)"/>
</EditForm>
</Template>
</GridColumn>
</GridColumns>
</TelerikGrid>
In both cases, the Textbox turns red if the users types an incorrect value.
But it does not if the grid load an incorrect value from the DB and display it.
Any suggestion to make this work?
Hello!
I am using Telerik.UI.for.Blazor version 5.0.0.,
I have a page with a treelist. I want all items to be collapsed when the page is loaded and the treelist is displayed for the first time.
How do I do this?