Hi
My UpcomingJobsPage is bound to UpcomingJobsViewModel and has the xaml as below at the end.
The RefreshView is bound to UpcomingJobsViewModel and calls command LoadDataCommand to load data into the ObservableCollection UpcomingJobsList. The listview is bound to UpcomingJobsList. Pretty standard stuff.
My question is how in general can I choose to bind my UpcomingJobsPage view elements to either UpcomingJobsViewModel properties or UpcomingJobsList properties? For instance in below code I need the 'From' to be coming from UpcomingJobsList but it says;

Thanks
Regards
<ContentPage.Content>
<Grid>
<RefreshView x:DataType="viewmodels:UpcomingJobsViewModel" Command="{Binding LoadDataCommand}" IsRefreshing="{Binding IsBusy, Mode=TwoWay}">
<ListView x:Name="listView" ItemsSource="{Binding UpcomingJobsList}" >
<ListView.ItemTemplate>
<DataTemplate >
<ViewCell>
<ViewCell.View>
<Grid >
<Label Text="{Binding From}" />
</Grid>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</RefreshView>
</Grid>
</ContentPage.Content>