TelerikGrid with different data types #1006
Unanswered
jwalkerSSC
asked this question in
Q&A
Replies: 3 comments
-
Hey @jwalkerSSC as I am no expert with Telerik, there is a guideline for that: https://www.telerik.com/blogs/unit-testing-blazor-components-bunit-justmock Did you add |
Beta Was this translation helpful? Give feedback.
0 replies
-
hey @jwalkerSSC, im going to convert this to a QA discussion. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Also, Telerik support is also able to help you with this, so if you are a paying customer, you are more likely to have a solution going through them. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to create a GRID for Blazor using the TelerikGrid. I get my list of items that can be tricky. We allow the users to setup User Defined field that can be a bit, decimal, date, int or text and give each on a unique name with the order that they should be displayed. i.e.. Amount1 - decimal - 1, Married - bit - 2, Year - date - 3. When I get the data and want to display it in the grid, I only want to allow them to add a value for each one, but the problem is that they can change the order that these come in. Could be Bit, then decimal, etc..
In my app, I have the following code:
When I run this, I get the following error:
Microsoft.AspNetCore.Components.Web.ErrorBoundary[0]
System.InvalidOperationException: Object of type 'Telerik.Blazor.Components.TelerikGrid`1[[TimeShareWare.Essentials.Shared.UserDefinedFields.UserDefinedFieldWithValues, TimeShareWare.Essentials.Shared, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null]]' does not have a property matching the name 'ChildContent'.
Any thoughts on how I can get this to work? I want to put it into a grid or maybe a list view because the users can enter as many of these fields as they would like.
Beta Was this translation helpful? Give feedback.
All reactions