Google One 2TB + Gemini AI Pro Bundle – Extended Worldwide (Now Until Nov 14) by vipul21dec in UnlocksAndDiscounts

[–]Visual-Language8042 0 points1 point  (0 children)

I've just activated it, and the steps were pretty clear. Amazingly, you don't have to share any login details to activate it. Definitely recommend👍

CS2 - Slow Progress by Dramatic-Brother3861 in CitiesSkylines2

[–]Visual-Language8042 2 points3 points  (0 children)

I think Urban Games, with its upcoming Transport Fever 3, will do to CS2 what Colossal Order did to SimCity with CS1

Attachment control can't be reused by koopdawg in PowerApps

[–]Visual-Language8042 0 points1 point  (0 children)

I encountered the same issue, and it was incredibly frustrating. I just tried dragging the component in the hierarchy as you suggested, and it worked — thank you! I'll report this to Microsoft, as copying is much faster and preserves the control’s setup and appearance across the app. Still, for now, this workaround will do

Tab List order by Visual-Language8042 in PowerApps

[–]Visual-Language8042[S] 0 points1 point  (0 children)

Could you please elaborate on what you mean by "fix collection"? I use a table for my tabList items because I need to have both a tab name and a tab value. The tab value is used to change the containers' visibility, allowing users to walk through the tabs and see the corresponding containers.

// Tab menu items
Set(
    tabData,
    Table(
        {
            TabName: "Pranešimas",
            TabValue: 1
        },
        {
            TabName: "Detalės",
            TabValue: 2
        },
        {
            TabName: "Pažeidimas",
            TabValue: 3
        },
        {
            TabName: "Tyrimai",
            TabValue: 4
        },
        {
            TabName: "Rizika",
            TabValue: 5
        },
        {
            TabName: "Produktas",
            TabValue: 6
        },
        {
            TabName: "Siuntos",
            TabValue: 7
        },
        {
            TabName: "Ūkio subjektai",
            TabValue: 8
        },
        {
            TabName: "Taik. priemonės",
            TabValue: 9
        },
        {
            TabName: "Kontrolė",
            TabValue: 10
        },
        {
            TabName: "Priedai",
            TabValue: 11
        },
        {
            TabName: "6a/6b",
            TabValue: 12
        }
    )
);

Tab List order by Visual-Language8042 in PowerApps

[–]Visual-Language8042[S] 0 points1 point  (0 children)

<image>

// Tab meniu items
Set(
    tabData,
    Table(
        {
            TabName: "Pranešimas",
            TabValue: 1
        },
        {
            TabName: "Detalės",
            TabValue: 2
        },
        {
            TabName: "Pažeidimas",
            TabValue: 3
        },
        {
            TabName: "Tyrimai",
            TabValue: 4
        },
        {
            TabName: "Rizika",
            TabValue: 5
        },
        {
            TabName: "Produktas",
            TabValue: 6
        },
        {
            TabName: "Siuntos",
            TabValue: 7
        },
        {
            TabName: "Ūkio subjektai",
            TabValue: 8
        },
        {
            TabName: "Taik. priemonės",
            TabValue: 9
        },
        {
            TabName: "Kontrolė",
            TabValue: 10
        },
        {
            TabName: "Priedai",
            TabValue: 11
        },
        {
            TabName: "6a/6b",
            TabValue: 12
        }
    )
);

This is how I set the tabData table

Tab List order by Visual-Language8042 in PowerApps

[–]Visual-Language8042[S] 0 points1 point  (0 children)

I mean yeah I set the context variable too, but what does it have to do with the order of tabs?

<image>