A serious bug
Hello.
It turns out that in the data model - if a field start with a small letter - there can be unpredictable results.
For instance open this examplehttps://blazor.syncfusion.com/demos/TreeView/Template?theme=material
then in the data model:
class TreeData
{
public int Id { get; set; }
public int? Pid { get; set; }
public string Name { get; set; }
public bool HasChild { get; set; }
public bool Expanded { get; set; }
public int Count { get; set; }
public bool Selected { get; set; }
}
change the field "Name" to "name" as :
class TreeData
{
public int Id { get; set; }
public int? Pid { get; set; }
public string name { get; set; }
public bool HasChild { get; set; }
public bool Expanded { get; set; }
public int Count { get; set; }
public bool Selected { get; set; }
}
the result code will not anymore receive any data from this field..
SIGN IN To post a reply.
2 Replies
KM
Kanagambigai Murugan
Syncfusion Team
December 2, 2019 01:35 PM UTC
Hi Yordan,
Good day to you.
We have validated the reported issue and considered this as a bug at our end. We have logged a bug report on it and we will include the fix for this bug in our Volume 4 Beta release. We appreciate your patience until then.
You can track the status of this via the following link.
Please let us know if you have any queries.
Regards,
Kanagambigai M.
SP
Sowmiya Padmanaban
Syncfusion Team
December 19, 2019 12:00 PM UTC
Hi Yordon,
We are glad to announce that our Essential Studio 2019 Volume 4 release v17.4.0.39 is rolled out and it is available for download under the following link.
As mentioned in our previous update, we have implemented and included the fix for the “Template rendering while providing model class with lower case property names” with this release (v17.4.0.39).
We have prepared a sample for your reference.
Sample link: https://www.syncfusion.com/downloads/support/directtrac/general/ze/BlazorApp-1975588726.zip
Also, please check out the below links for more details regarding this newly included event.
We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance.
Regards,
Sowmiya.P
SIGN IN To post a reply.
- 2 Replies
- 3 Participants
-
YO Yordan
- Nov 29, 2019 03:18 PM UTC
- Dec 19, 2019 12:00 PM UTC