What it is
A page whose body holds a list and a detail pane side by side — a narrower version of List view’s table next to a narrower version of Detail view’s content, so a reader can move between records without losing the collection they’re choosing from. List view’s own Choose something else when table already names this page for exactly this case — “keep the list visible while working in a record” — because repeated navigation back to the list is the signal that the two belong side by side. This page is that destination. You are building one if the reader’s job alternates between “which of these” and “what about this one” often enough that a full-page trip between List view and Detail view costs more than it’s worth.Region vocabulary
This archetype adds no regions, but it changes how one is used. Per TITAN-VIEW-06, a page has exactly oneContents, and a split view does not violate that by having a list and a detail pane — it is
one Contents region, internally divided into two panes: a narrower list pane and a wider
detail pane. The panes are not two Contents regions any more than a tabbed body’s TabPanels
are — they are how this one region’s job is laid out. Say this explicitly, the way
List view’s own page states its
table is “the whole body” of its Contents.
Choose this view when
- The reader switches between records often enough that losing the list on every switch is the actual cost, not a hypothetical one — per List view’s own framing.
- Comparing records matters — checking one, then the next, then back — more than committing to one and leaving the collection behind.
- The list and detail content are both simple enough to fit their respective pane widths without each one degrading the other — see Responsive and density behavior.
Choose something else when
Regions
What fills each region
The list pane
The list pane is List view’s own table composition, narrowed. SameControls above it — search, filters, result count — and the same row model:
one row per record, selection state, row-level actions. The difference is width, not kind.
What survives at reduced width follows List view’s
own column-collapse logic, not a second answer derived here. That page already states that
lower-priority columns collapse out of the table before it’s forced into horizontal scroll, and
that a collapsed column’s data stays reachable from the row rather than disappearing outright.
A split view’s list pane is simply operating at a narrower width sooner — often at the lg
breakpoint rather than md — so it reaches that same collapse behavior earlier, not
differently.
In practice this usually means the list pane keeps an identifying column (name, status) and
drops everything else behind the row, relying on the detail pane itself to show what the
dropped columns held.
The detail pane
The detail pane shows what Detail view would show for the selected row, condensed for the pane’s width. The two pages are not two content models that happen to look similar — they are the same content model, laid out for two different widths, and they cite each other rather than duplicate:- Attribute groups, and related data rendered as a compact table or list — the exact composition Detail view already specifies.
- The same threshold for tabbing versus a single scrolling section, per Detail view — though a narrower pane reaches that threshold sooner, the same way its list pane reaches column-collapse sooner.
- The same relationship to CRUD: Update and Destructive confirmation for the pane’s own record-level actions.
Selecting a row
Selecting a row in the list pane updates the detail pane in place — no navigation, no page reload of the list pane. Selection changes the URL. TITAN-VIEW-14 requires this for tabs because a section that exists only in local state cannot be linked, survive a reload, or be reached by the back button. The same reasoning applies to a selected record: a reader who wants to send a colleague “this campaign, in this view” or refresh the page mid-review needs the selection to be more than component state. A split view’s selected row is functionally the same kind of navigable state a tab is — a piece of “where am I” that the reader did not type into a URL bar but still depends on being restorable.Responsive and density behavior
This is the load-bearing question for this archetype. Two panes side by side is a wide-viewport composition, and it does not survive a narrow one — Titan is desktop-first and this proposal is scoped tolg and above for the two-pane layout itself, per
Layout & grid.
Proposed behavior: the split collapses to the list alone below a threshold, and the detail
pane becomes a separate destination instead of a second pane.
The selection itself is not lost across the collapse — since Selecting a row
puts it in the URL, the same link that opened a specific record in the detail pane at
lg still
resolves to that record’s own destination at md, whichever surface is chosen there.
Accessibility
The page-level decisions are the frame’s, and they apply unchanged — see Views overview → Accessibility. Onemain
covering the whole Contents region — both panes share it, since they are one region, not two.
What is specific to this archetype:
- Selecting a row is announced, the same way List view already requires for its own selection state — a live region stating which record is now shown in the detail pane, so a screen-reader user does not have to traverse into the detail pane to discover the selection changed.
- The list pane and detail pane are each their own landmark region inside the shared
main— aregionrole with an accessible name (“Campaign list” and “Campaign detail,” for instance) — so a screen-reader user can jump directly to either pane rather than tabbing through the entire list to reach the detail content, or vice versa. - Keyboard focus can move from a list row directly to the detail pane’s content without passing through every intervening row — following the row’s own selection action, not a separate tab stop per row.
- The detail pane’s own accessibility requirements are Detail view’s, applied inside the pane rather than to a full page — this page does not restate them.
Constraints
Composed example
Related
- Views overview — the frame this archetype fills, and TITAN-VIEW-06’s one-
Contentsrule this page follows explicitly - List view — the composition the list pane narrows, and the page that names this archetype as its own alternative
- Detail view — the content model the detail pane condenses
- CRUD: Read — the drawer-preview option this page’s collapsed narrow-viewport behavior draws on
- Drawer — one candidate surface for the collapsed detail pane at narrow widths
Why it works this way
OneContents, two panes, is a layout decision inside the region — not a second region.
Treating the list and detail as two Contents would mean the page has two main landmarks,
which breaks the one screen-reader navigation guarantee Views overview
makes for every page. The two-pane layout is real and the constraint still holds, because the
constraint is about the region’s cardinality, not about how much visual structure lives inside
it.
The detail pane borrows its content model rather than inventing a narrower one. A split
view that specified its own version of “what a detail pane shows” would immediately drift from
Detail view the first time either page changed — two
places stating the same object’s content, agreeing by coincidence rather than by citation. Making
the detail pane condensed-Detail-view rather than a sibling concept means a change to how a
campaign’s attributes are grouped only has to be made once.
Collapsing to the list, rather than shrinking both panes, is what keeps the narrow layout
usable. Two panes each too narrow to read is worse than one pane that works and a second
surface reached deliberately. The list survives the width; the detail pane changes surfaces
instead of degrading in place.