just a basic list as a data source:
public List<Feature> Features { get; set; } = new List<Feature>();
as simple as I can make the Grid:
<TelerikGrid Data="@Features" Sortable="true">
<GridColumns>
<GridColumn Field="Qty" />
</GridColumns>
</TelerikGrid>
And an event to add features:
void AddFeature()
{
Features.Add(new Feature() { Qty = 1 });
}
I can add the features just fine, but nothing shows in the grid until I sort, then it is all there - what am I missing?