Mixin fields with tabs

I have a mixin, who’s fields I’d like to show on a different tab depending on where it’s used.

handle: Section\Title
name: Title
type: mixin

fields:
    title:
        tab: Content
        label: Title

And then I go to use this mixin in another blueprint like this…

handle: Content\Settings
type: global
name: Settings

fields:
  _title
    type: mixin
    source: Section\Title

Is there a way to get the fields from the Section\Title mixin to display on a different tab ?

In this example I’ve tried setting a tab: value when using the blueprint (see below) but the fields still show up on the Content tab.

_title
  tab: Title
  type: mixin
  source: Section\Title

Interesting idea, yes, we should definitely add support for this (if it isn’t in there already).

The mixin “tab” property could transfer to its defined fields, but only if the field doesn’t define it already (as a fallback). So in your example, your fields shouldn’t define a tab at all if they rely on the mixin to provide it.

Try that and let me know if it works (unlikely but worth a try). If it doesn’t we can look at including this functionality.