Enduro icon indicating copy to clipboard operation
Enduro copied to clipboard

Relations 1-n between Content files

Open droid51 opened this issue 7 years ago • 0 comments

Hey there,

thx for ypu work, nice looking cms!

one question: can I get a dropdown inside my content file "products" of my content file "groups" something like @@goup.by-id('aaa')

({
    group: [
        {
            id: 'aaa',
            label: 'Group A'
        },
        {
            id: 'bbb',
            label: 'Group B'
        }
    ]
})

({
    product: [
        {
            id: 'p1',
            label: 'Product A',
            group: '@@groups.@id{aaa}'

        },
        {
            id: 'p2',
            label: 'Product B',
            group: '@@groups.@id{aaa}'
        },
        {
            id: 'p3',
            label: 'Product C',
            group: '@@groups.@id{bbb}'
        }
    ]
})

thx!!

Greetings crazyx13th

droid51 avatar Feb 28 '18 12:02 droid51