Extending UUI Tab Group
# help-with-umbraco
e
Hi everyone, I am trying to extend the UUI Tab Group with a custom one. Has anyone done this before and could you point me in the right direction? I'm using Umbraco 15.x Much appreciated! https://cdn.discordapp.com/attachments/1341935595592613909/1341935596012306493/image.png?ex=67b7ce6a&is=67b67cea&hm=35de9041cea9cac3de09a12e7c09d8f622b3187d3d0a4f2dfa3dd7c740cbdc48&
k
Hi these are actually workspace views. https://docs.umbraco.com/umbraco-cms/customizing/extending-overview/extension-types/workspaces/workspace-views so you can add your own workspace view for the document workspace and it will appear in the top your manifest will be something like :
Copy code
json
var translationDocumentWorkspaceView: UmbExtensionManifest = {
    type: 'workspaceView',
    alias: 'jumoo.tm.document.view',
    name: 'Translation Manager - content app',
    js: () => import('./translation-view.element.js'),
    weight: 10,
    meta: {
        icon: 'jumoo-tm-logo',
        pathname: 'translations',
        label: '#tmApp_name',
    },
    conditions: [
        {
            alias: 'Umb.Condition.WorkspaceAlias',
            match: 'Umb.Workspace.Document',
        },
    ],
};
e
Amazing! I was trying to figure out the term we’re using in Umbraco. Thank you @Kevin Jump
4 Views