Data not binding in Xamarin forms Listview group

Data not binding in Xamarin forms Listview group



I am using List view Grouping in Xamarin forms, but some how data is not binding. I am using Xamarin Forms 3.1 latest version. My code is :


<ListView ItemsSource="Binding FacilityList"
IsGroupingEnabled="true" HasUnevenRows="True" ItemTapped="OnItemTapped">
<ListView.GroupHeaderTemplate>
<DataTemplate>
<ViewCell>
<Label Text="Binding Heading" TextColor="Black" FontSize="Medium" />
</ViewCell>
</DataTemplate>
</ListView.GroupHeaderTemplate>

<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout>
<Image Source="Binding ImageName" HeightRequest="50" WidthRequest="50"/>
<Label Text="Binding Name" TextColor="Black" FontSize="Medium"/>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>



And my view model is


private ObservableCollection<FacilitiesGroup> facilityList;
public ObservableCollection<FacilitiesGroup> FacilityList

get => facilityList;
set => SetProperty(ref facilityList, value);


private Facility selectedItem;
public Facility SelectedItem

get => selectedItem;
set

SetProperty(ref selectedItem, value);



public ICommand ItemTappedCommand get; set;

public FacilityViewModel()

FacilityDataStore facilityDataStore = new FacilityDataStore();
var items = facilityDataStore.GetList();
var groupList = new List<FacilitiesGroup>();
var group = new FacilitiesGroup()

Facilities = items.Where(x => x.IsSubscribed == true).ToList(),
Heading = "Subscribed"
;
var group2 = new FacilitiesGroup()

Facilities = items.Where(x => x.IsSubscribed == false).ToList(),
Heading = "Unsubscribed"
;
groupList.Add(group);
groupList.Add(group2);
FacilityList = new ObservableCollection<FacilitiesGroup>(groupList);



FacilityGroup Class code is :


public class FacilitiesGroup

public List<Facility> Facilities get; set;
public string Heading get; set;



And Facility class is :


public class Facility

[PrimaryKey, AutoIncrement]
public int ID get; set;

public string Name get; set;
public bool IsSubscribed get; set;
public string ImageName get; set;



I am binding data like :


public MainPage()

InitializeComponent();
BindingContext = new FacilityViewModel();



I don't understand what is wrong with my code. Any help will be appreciated.
Thanks.






Which data is not binding? Heading, ImageName or Name? or all of it? Are you seeing binding errors in the output window? Can you update the viewmodel code, so we can see how properties are defined and if you are implementing an interface.

– Neil
Sep 17 '18 at 1:53






Actually, everything is not binding.

– Srusti Thakkar
Sep 17 '18 at 6:07






without more information, I can't really help. I need to see code around the code you have posted. You answered the 1st part of my last comment. What about the rest?

– Neil
Sep 17 '18 at 16:19






Sorry, for late reply. I have updated code please look at this

– Srusti Thakkar
Sep 17 '18 at 17:19






@Neil, Have you looked on my viewmodel?

– Srusti Thakkar
Sep 18 '18 at 17:25




2 Answers
2



Sorry for the delayed response. I found this sample, it might be helpful



Disclaimer: I am not observing ViewModel/Model boundaries very well. I am just trying to figure out what is not working. you need to update the ViewModels/Models per your requirements and design documents.



I don't think group header is what you are looking for. here is a link to the Xamarin documentation where it talks about header/footer and has an image



Let's start with the listview 1st. Remove the GroupHeaderTemplate and add GroupDisplayBinding attribute the to the listview.


<ListView ItemsSource="Binding FacilityList"
IsGroupingEnabled="true"
HasUnevenRows="True"
GroupDisplayBinding="Binding Heading" <---------
ItemTapped="OnItemTapped">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout>
<Image Source="Binding ImageName" HeightRequest="50" WidthRequest="50"/>
<Label Text="Binding Name" TextColor="Black" FontSize="Medium"/>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>



Once you make that change, if you run the app. you should see two items in the list. Subscribed/Unsubscribed. Progress!



Next, we need to change FacilitiesGroup Model. We need to extend ObservableCollection.


public class FacilitiesGroup : ObservableCollection<Facility>

public string Heading get; set;



Next, we need to make a change in the FacilityViewModel


public FacilityViewModel()

FacilityDataStore facilityDataStore = new FacilityDataStore();
var items = facilityDataStore.GetList();
var groupList = new List<FacilitiesGroup>();
var group = new FacilitiesGroup()

Heading = "Subscribed"
;

foreach( Facility facility in items.Where(x => x.IsSubscribed == true ) )

group.Add(facility);


var group2 = new FacilitiesGroup()

Heading = "Unsubscribed"
;

foreach( Facility facility in items.Where(x => x.IsSubscribed == false ) )

group2.Add(facility);


groupList.Add(group);
groupList.Add(group2);
FacilityList = new ObservableCollection<FacilitiesGroup>(groupList);



Hope that helps! Goodluck.






No problem. Thanks for your response. I will try and let you know.

– Srusti Thakkar
Sep 19 '18 at 4:58






Thanks. It's working.

– Srusti Thakkar
Sep 20 '18 at 16:01






Glad I could help

– Neil
Sep 20 '18 at 16:12



First, You did not mention which particular data is not binded. Anyways make sure that the list that you are binding should not be empty or null. Just try below code.


<ListView x:Name="FacilityListview"
IsGroupingEnabled="true" HasUnevenRows="True" ItemTapped="OnItemTapped">
<ListView.GroupHeaderTemplate>
<DataTemplate>
<ViewCell>
<Label Text="Binding Heading" TextColor="Black" FontSize="Medium" />
</ViewCell>
</DataTemplate>
</ListView.GroupHeaderTemplate>

<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout>
<Image Source="Binding ImageName" HeightRequest="50" WidthRequest="50"/>
<Label Text="Binding Name" TextColor="Black" FontSize="Medium"/>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>



Now assign the FacilityList as itemsSource below in the controller.


FacilityListview.ItemsSource = FacilityList;






FYI, everything is not binding. Also list contains two records. I can see two separator but cant see data.

– Srusti Thakkar
Sep 17 '18 at 6:07






can u check the error log and tell me what exactly is the issue

– Learner
Sep 17 '18 at 6:10






I have tried your code but it's not working.

– Srusti Thakkar
Sep 17 '18 at 17:29






Any update regarding this?

– Srusti Thakkar
Sep 18 '18 at 17:24



Thanks for contributing an answer to Stack Overflow!



But avoid



To learn more, see our tips on writing great answers.



Required, but never shown



Required, but never shown




By clicking "Post Your Answer", you agree to our terms of service, privacy policy and cookie policy

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)