I am using the TabbedPage as mentioned with more than three tabs for Xamarin.Forms Application.
After entering/selecting values in each tab, Finally i want to save all the values entered in each to Server by using service.
How do i retrieve multiple Tab values in current Child Tab and save the same?
First approach:
- We have used the Code behind Work around without MVVM Pattern as below.
FYI: Tabbed Page Implementation Class Details :
public partial class SR : TabbedPage - Parent TabbedPage
public partial class SRListing : ContentPage - Tab1
public partial class SRFilter : ContentPage - Tab2
public partial class SRView : ContentPage - Tab3
For Ex: When we are in Tab3 page, we need to save the Tab1 ,Tab2 Page Values as well.
- As mentioned in above link, we have created three tabs using MVVM pattern.
Kindly suggest and provide links on how to retrieve values of Tab using MVVM Pattern as well as code behind logic.
I am awaiting for your response.
Thanks in Advance.