Hello,
There is a very strange issue with SfList checkboxes.
If I set the first item in the list to be checked all other items are unchecked.
This is a blocking issue in our application when we try to set listview checkboxes based on saved configuration etc
Please see the screenshot and basic code sample below
Regards
Vincent

Code
@page "/cbx2"
@using Syncfusion.Blazor.Buttons
@using Syncfusion.Blazor.Lists
<h2>I am list one I should have 3 items ticked in position 1,2,3</h2>
<SfListView DataSource="@Data" ShowCheckBox="true">
<ListViewFieldSettings TValue="DataModel" Id="Text" Text="Text" IsChecked="IsSelected"></ListViewFieldSettings>
</SfListView>
<h2>I am list two I should have 3 items ticked in position 2,3,4</h2>
<SfListView DataSource="@Data2" ShowCheckBox="true">
<ListViewFieldSettings TValue="DataModel" Id="Text" Text="Text" IsChecked="IsSelected"></ListViewFieldSettings>
</SfListView>
@code {
private DataModel[] Data = {
new DataModel { Text ="Hennessey Venom", Id = "list-01", IsSelected = true },
new DataModel { Text = "Bugatti Chiron", Id = "list-02", IsSelected = true },
new DataModel { Text = "Bugatti Veyron Super Sport", Id = "list-03", IsSelected = true },
new DataModel { Text = "SSC Ultimate Aero", Id = "list-04" },
new DataModel { Text = "Koenigsegg CCR", Id = "list-05" },
new DataModel { Text = "McLaren F1", Id = "list-06" },
new DataModel { Text = "Aston Martin One- 77", Id = "list-07"},
new DataModel { Text = "Jaguar XJ220", Id = "list-08" },
new DataModel { Text = "McLaren P1", Id = "list-09" },
new DataModel { Text = "Ferrari LaFerrari", Id = "list-10" }
};
private DataModel[] Data2 = {
new DataModel { Text ="Hennessey Venom", Id = "list-01" },
new DataModel { Text = "Bugatti Chiron", Id = "list-02", IsSelected = true },
new DataModel { Text = "Bugatti Veyron Super Sport", Id = "list-03", IsSelected = true },
new DataModel { Text = "SSC Ultimate Aero", Id = "list-04", IsSelected = true },
new DataModel { Text = "Koenigsegg CCR", Id = "list-05" },
new DataModel { Text = "McLaren F1", Id = "list-06" },
new DataModel { Text = "Aston Martin One- 77", Id = "list-07"},
new DataModel { Text = "Jaguar XJ220", Id = "list-08" },
new DataModel { Text = "McLaren P1", Id = "list-09" },
new DataModel { Text = "Ferrari LaFerrari", Id = "list-10" }
};
class DataModel
{
public string Text { get; set; }
public string Id { get; set; }
public bool IsSelected { get; set; }
}
}