I am applying a min/max property to the DatePicker but it doesn't work as expected in the UI.
In this example my Min is 7/24/18 and the current value that is bound to the property is 10/08/18.
When I bring up the Calendar UI, I can see that the month of July is enabled and that June is disabled. But when I click on July it actually brings up October.
Made a small video of it but can't upload it.
Hi Guys,
im developing a server-side-blazor app on .NetCore 3.1 and up to now i was really happy with your components.
But after update from version 2.5.1 to 2.6.1/ 2.7.0 i had a binding problem without any change. (Following Example i created for testing)
<TelerikGrid Data="@LagerOrte">
<GridColumns>
<GridColumn Field="@(nameof(LagerOrt.Nummer))" Title="Nr" Width="75px" />
<GridColumn Field="@(nameof(LagerOrt.Zeichen))" Title="Barcode" Width="150px" />
</GridColumns>
</TelerikGrid>
LagerOrte = new ObservableCollection<LagerOrt>(Enumerable.Range(1, 30).Select(x => new LagerOrt
{
Id = Guid.NewGuid(),
Nummer = x,
Zeichen = "zeichen " + x
}));
In Version 2.5.1 i had no problem but since Version 2.6.1 i get following ErrorMessage:
[2020-02-04T15:30:32.500Z] Error: System.Collections.Generic.KeyNotFoundException: The given key 'HWE.DAL.DOMAIN.Models.LagerOrt' was not present in the dictionary.
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at Microsoft.AspNetCore.Components.RenderTree.RenderTreeDiffBuilder.AppendDiffEntriesForRange(DiffContext& diffContext, Int32 oldStartIndex, Int32 oldEndIndexExcl, Int32 newStartIndex, Int32 newEndIndexExcl)
at Microsoft.AspNetCore.Components.RenderTree.RenderTreeDiffBuilder.ComputeDiff(Renderer renderer, RenderBatchBuilder batchBuilder, Int32 componentId, ArrayRange`1 oldTree, ArrayRange`1 newTree)
at Microsoft.AspNetCore.Components.Rendering.ComponentState.RenderIntoBatch(RenderBatchBuilder batchBuilder, RenderFragment renderFragment)
at Microsoft.AspNetCore.Components.RenderTree.Renderer.RenderInExistingBatch(RenderQueueEntry renderQueueEntry)
at Microsoft.AspNetCore.Components.RenderTree.Renderer.ProcessRenderQueue()
i would be very grateful for a solution
regards Dennis
Hi,
According to the docs https://docs.telerik.com/blazor-ui/components/autocomplete/events.html, the OnRead is supposed to receive one of these.
Trouble is, I can't find the namespace for it.
Stuck …
Thanks … Ed
If I add an ID attribute to a dropdownlist, I get the following exception:
Object of type 'Telerik.Blazor.Components.TelerikDropDownList`2[[<name-of-my-object>],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]' has a property matching the name 'ID', but it does not have [ParameterAttribute] or [CascadingParameterAttribute] applied.
Is it because the object that serves as "TModel" has a property named Id?
The reason I need an Id to begin with, is so that I can manipulate the value from javascript. Help on doing that would be great!
I Display without issues complex types in the grid control, the ToString method is used to display the row value for that column and it's fine.
However I can't figure out how to customize sorting and filtering, is there a way to provide a method to compare, sort, and filter columns with complex types?
I can't get inline editing to work when the item is an EF Core 2.2.6 proxy (lazy loading turned on), it throws an exception right after the OnEdit event.
When using POCOs, everything works fine. Not a big issue, but guessing a lot of people might run into this scenario.
Hello,
i wanted to know if you are planning to add sortable to combobox in ui for blazor ?