I see that Grid supports binding to INotifyCollectionChanged (https://demos.telerik.com/blazor-ui/grid/observable-data).
It is wonderful!
1) Is that binding supported in other list controls (ComboBox, DropDownList)?
2) Does Telerik support binding to INotifyPropertyChanged? This question applies to all controls.
Hi (Marin)!
I have some questions/suggestions around the pager part of the grid:
I realise I can probably adjust this using CSS myself, but it would be nice to have some better default behaviour!
I've attached some screen shots (simulated on desktop) to illustrate the issue
Thanks,
Nick
The documentation recommends using the static assets approach and says:
"You can add the JS Interop file as a static asset from our package, instead of using a CDN. Static assets (the _content folder) are automatically included in the solution by the Nuget package, so all that's needed is then to reference the asset:"
There is no _content folder (using ZIP archive with private .nupgk files, version 2.5.0) and no assets.
Regards
Heiko
Hello
I have in the latest months tested Blazor with Telerik components.
Friday, my code worked as intended with Telerik DataSource 1.3.0 and Telerik UI for Blazor 2.2.1.
Today, the calendar was shown as friday, but the days were unselectable, and the TelerikCharts were invisible.
What can I do to prevent it?
I have tried to edit the reference to css and js files to older editions, but without effect.
Thank you in advance
Aksel
Is a new release coming for 3.1 any time soon? ETA? I'm not pushing -- just trying to plan for the change.
Mark
Hi,
I'm getting an odd compile error having upgraded to the latest .Net 3.1. I've recreated the issue by simply creating a new Blazor (client) project and adding the Telerik package, it goes away when I remove it.
VS 2019 16.5 preview 1. In the upgrade scenario I upgraded all the packages to 3.1.0-preview4.19579.2, obviously it picked these up when I created a new project as well.
The error is:
Severity Code Description Project File Line Suppression State
Error MSB4018 The "ResolveBlazorRuntimeDependencies" task failed unexpectedly.
System.InvalidOperationException: Multiple assemblies found with the same assembly name 'Microsoft.CodeAnalysis.resources':
Microsoft.CodeAnalysis.resources
C:\Users\NickWhymark\.nuget\packages\microsoft.codeanalysis.common\3.4.0\lib\netstandard2.0\de\Microsoft.CodeAnalysis.resources.dll
at Microsoft.AspNetCore.Blazor.Build.ResolveBlazorRuntimeDependencies.<ResolveRuntimeDependenciesCore>g__CreateAssemblyLookup|17_1(IEnumerable`1 assemblyPaths)
at Microsoft.AspNetCore.Blazor.Build.ResolveBlazorRuntimeDependencies.ResolveRuntimeDependenciesCore(String entryPoint, IEnumerable`1 applicationDependencies, IEnumerable`1 monoBclAssemblies)
at Microsoft.AspNetCore.Blazor.Build.ResolveBlazorRuntimeDependencies.Execute()
at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()
at Microsoft.Build.BackEnd.TaskBuilder.<ExecuteInstantiatedTask>d__26.MoveNext() BlazorApp1.Client C:\Users\xxx\.nuget\packages\microsoft.aspnetcore.blazor.build\3.1.0-preview4.19579.2\targets\Blazor.MonoRuntime.targets 252
It's a bit odd as it seems to be something to do with Analyzers and I'm not sure why that should break the build or what Telerik has to do with it?
Thanks,
Nick.
Here is my situation -- I have a number of nested controls and I have a cascading value that encompasses all the controls. When I put one of my nested components inside a Telerik window then the cascading parameter on said component does not work (it gets value of null). If I move my component just outside the Telerik window and nothing else -- then the parameter gets the correct value.
Is this a bug? Does the parameter not get a value in the control because the window's "visible property" is false initially which maybe prevents the property from being set properly?
Hi,
How can I translate the following markup into a row template?
Thanks … Ed
<
GridCommandColumn
Width
=
"300px"
>
<
GridCommandButton
Command
=
"Save"
Icon
=
"save"
ShowInEdit
=
"true"
>Update</
GridCommandButton
>
<
GridCommandButton
OnClick="@((args)=> SelectDashboardModel(args.Item as DashboardModel))" Icon="edit">Edit</
GridCommandButton
>
<
GridCommandButton
Command
=
"Cancel"
Icon
=
"cancel"
ShowInEdit
=
"true"
>Cancel</
GridCommandButton
>
</
GridCommandColumn
>