Hello everyone,
I am new to using Syncfusion and am running into a into a bit of a problem trying to get a Treegrid going. When I attempt to use childMapping, i get numerous blank rows and the objects are not grouping the way that they should be.
I have a list of objects being rendered. This is the object type -
public class Metar()
{
public string StationId;
public double TempC;
public double DewPoint;
public double PrecipIn;
public string RawText;
}
I set the tree grid up like this:
I was expected the tree grid to group all the data rows on the StationId column. Technically that is happening, but when I click on the arrow by the StationId, it displays only 1 new row of data, and you have to keep clicking to see them all. Then, in between StationId's, there are 5-6 blank rows just sitting there. I have also tried Grouping the records in a LINQ query by StationId and rendering that, but I get a "No records to display" message instead. Would anyone happen to have any ideas or advice for me?