15 questions
0
votes
0
answers
34
views
Validation error from a custom validation attribute not seen until I edit the Blazor TelerikForm field
I have a custom validation attribute class deriving from ValidationAttribute. The error thrown from this class is correctly seen when I edit the form field. I want the error to be also seen when user ...
0
votes
0
answers
33
views
Why do I keep getting null data from service call
I have a service which calls controller, which has cacheservice to send response data as location list based on customerId. As shown in below code, I am using it for paging. But I get null value at ...
0
votes
1
answer
118
views
Issues with Blazor Treeview
I'm using Telerik Blazor TreeView Component in my Blazor C# code to display hierarchical data. Facing 2 issues with it, viz:
(i) All child nodes are highlighted with a blue color although I'm not ...
0
votes
1
answer
24
views
Create a method that takes an entity model, a property of an entity mode, and a DataSourceResult as parameter to determine a column width
I am using Telerik UI for Blazor grid and trying to create a method that will take the data brought back from a linq query, look at all the strings in a specific column to find the largest one, ...
0
votes
1
answer
330
views
Blazor Telerik Scheduler - Unable to cast object of type 'System.String' to type 'System.Collections.Generic.IEnumerable`1[System.DateTime]'
I'm trying to populate a Telerik Blazor Scheduler UI Component with data I'm fetching from my API. The error message I'm getting is:
Error: System.AggregateException: One or more errors occurred. (...
1
vote
0
answers
420
views
OnInitializedAsync() Issue with Blazor Telerik
Im using Telerik Blazor controls, I am using mt API to return data which works fine when I check it from an API perspective. My web app has issues as it errors as I believe there is no data. To my ...
0
votes
1
answer
183
views
IEnumerable property issue using API call - Blazor Telerik
I have created a Blazor project using Telerik's built in extension.
Below is my code:
<div class="tableeee"
<table cellpadding="0" cellspacing="0">
<...
0
votes
1
answer
403
views
Open telerik blazor DateRangePicker on calendar icon click
I need to open telerik blazor date range picker on calendor Icon click.
I was tried to find the solution but can not able to find proper that is work for me.
The telerik document have no such event to ...
0
votes
1
answer
165
views
How can I modify verbiage for the Telerik blazor scheduler?
Is there a way to modify the verbiage for the "all day" field?
1
vote
1
answer
929
views
Blazor: Cannot initialize a ComponentBase more than once
I have a complicated issue when navigation through my Telerik-Blazor-Wizard.
Every Time i want to navigate Back i get this Exception:
Error: System.InvalidOperationException: The render handle is ...
1
vote
1
answer
1k
views
Telerik UI For Blazor: Add Item To Grid In Code
Telerik Grid for Blazor, how to add a row through code. Should be easy, but I cannot find a straightforward answer anywhere. Here's my grid:
<TelerikGrid Data=@GridPallets
...
0
votes
1
answer
793
views
Custom Blazor Input Control Wrapper Components not updating correctly
I need some help with a Blazor implementation of input controls. I am using CSLA with Telerik Blazor controls.
I have taken the standard Telerik Blazor TelerikTextBox and TelerikNumericTextBox ...
1
vote
1
answer
487
views
Null reference exception deep inside TelerikDropDownList
I'm getting a null reference exception deep inside Telerik's Blazor DropDownList component and I can't spot why. Here's a page that demonstrates the error.
@page "/DropDown"
@using Telerik....
0
votes
1
answer
492
views
Connecting Telerik Blazor Control to Entity and Ardalis.SmartEnum
Using SmartEnum's https://github.com/ardalis/smartenum to handle Entity Framework 5.0 fields for things such as State, Country, Etc.
public sealed class StatesEnum : SmartEnum<StatesEnum>
{
...
1
vote
1
answer
384
views
How to set selectbox value by external code in blazor?
I'm using TelerikDropDownList and i want to set selectbox value by external code (manually, without the user interface) by an event.
<TelerikDropDownList Id="TelerikDropDownListId"
...