Questions tagged [master-detail]
1340 questions
9
votes
2 answers
Issue when rearranging List item in detail view using SwiftUI Navigation View and Sorted FetchRequest
I have a NavigationView with a list showing tasks from a CoreData FetchRequest. The FetchRequest is sorted ascending on Task.dueDate. The TaskDetail view basically consists of a TextField for the title and a date picker for the date. Changing the…

iSebbeYT
- 1,441
- 2
- 18
- 29
9
votes
3 answers
Xamarin.Forms Hamburger Menu Icon gone after Update to Xamarin.Forms 2.2
After I updated my Xamarin.Forms project from Xamarin.Forms 2.0 to Xamarin.Forms 2.2, the Hamburger Icon is gone.
I've googled without luck, has anybody experienced the same issue?

The Chris
- 591
- 6
- 19
9
votes
3 answers
iOS UI - App Store Explore section Transition
I was wondering if this nice master-detail transition where you click on the tableView cell and it expand to disclose the detail , with the cell's label being the navigation bar title is an interface which is part of the SDK object library or it is…

luca
- 36,606
- 27
- 86
- 125
9
votes
3 answers
Master Detail Page on the right side using Xamarin.Forms
I've created a master detail page on the left side using Xamarin.Forms, how about creating the same for the right side?
Below is my sample code for the left slider menu;
public class App
{
static MasterDetailPage MDPage;
public static Page…

ohkered
- 91
- 1
- 5
9
votes
1 answer
Master detail split styling in android
This question probably has been asked many times over here, without yielding useful answers. I'd place it here with a possible answer. Feel free to improve.
Question: How to setup popup like style of detail view, in side by side master detail view…

S.D.
- 29,290
- 3
- 79
- 130
8
votes
4 answers
UISplitViewController: How to force showing the master ViewController
I am using a UISplitViewController, with the master and the detail viewcontrollers, without UINavigationControllers.
In some cases (for example when clicking on a universal link), I would like to force the app to always show the master…

Daniele B
- 19,801
- 29
- 115
- 173
8
votes
2 answers
Android: master/detail flow (dual-pane) using 1 activity
As reported by the Android guide, dual-pane can be achieved in two ways:
Multiple fragments, one activity
Multiple fragments, multiple activities
I am using the first case (the Android guide only explains the second case).
This is what happens on…

Daniele B
- 19,801
- 29
- 115
- 173
8
votes
3 answers
Show "Back to Menu" Button in iOS NavigationBar with Xamarin.Forms
I'm trying to build a cross-platform app using C# and Xamarin.Forms. It contains a slide-out menu implemented in form of a MasterDetailPage. While on Android there is a button with the app icon in the top left corner, which toggles the slide-out…

Falko
- 17,076
- 13
- 60
- 105
8
votes
1 answer
DrawerLayout and Multi Pane Layout
My application uses a Multi Pane layout to display a list of assignments. Each Assignment can be put in one AssignmentCategory. I want to use a DrawerLayout to display all the AssignmentCategories so the user can switch easily between the diffirent…

ObAt
- 2,337
- 3
- 24
- 44
8
votes
1 answer
Is there some way in Delphi to cache master-detail rows and post both master and detail child rows at the same time
I want to post in memory some child rows, and then conditionally post them, or don't post them to an underlying SQL database, depending on whether or not a parent row is posted, or not posted. I don't need a full ORM, but maybe just this:
User…

Warren P
- 65,725
- 40
- 181
- 316
7
votes
1 answer
Why virtual keyword is used in C# master-detail model?
Refer to the EntityFramework article, and other ASP MVC webinars from Microsoft such as;
1: http://www.asp.net/mvc/videos/5-minute-introduction-to-aspnet-mvc
2:…

Youngjae
- 24,352
- 18
- 113
- 198
7
votes
2 answers
close fullscreen of Youtube Player on back button inside fragment
I am using Master/Detail layout in a tablet, on the left few buttons to open several fragments, one of the fragments contains youtube player.
The Problem,
When the youtube player is full screen, and i press back button, The activity onBackPressed is…

Omar HossamEldin
- 3,033
- 1
- 25
- 51
7
votes
0 answers
Master/Detail flow with only fragments
I want to use Master/Detail flow in my app. I have been reading about it here and also created an example project with help of Eclipse templates.
What I don't want is to use activities, like most of the examples I have been reading suggestions. I…

Ismar Slomic
- 5,315
- 6
- 44
- 63
6
votes
1 answer
Reporting Services: Business object data source with parent-child-grandchild
How do I create a report with a parent-child-grandchild relationship using POCOs / custom business objects?
public class Invoice
{
public List Accounts { get; set; }
}
public class Account
{
public List LineItems { get; set;…

Brian Low
- 11,605
- 4
- 58
- 63
6
votes
1 answer
Migrate Play! Framework 1.2.3 application controller to 2.0
Out of curiosity I would like to migrate a Play! 1.2.3 Java application to Play! 2.0, but I'm having difficulty understanding the new application controller. I've examined the three example applications, but they've been of little help to me as I'm…

Francois Green
- 93
- 5