Side by Side UD Tables Instead of Stacked Within the Same Column

Hey everyone, I was wondering if anyone knows how to create two New-UDTable next to each other within the same UDColumn and on the same UDCard? Whenever I create two tables in the same UDColumn the tables are stacked on top of each other and I would like them to be next to each other. The tables only contain two columns each.

Any suggestions would be greatly appreciated! Thank you.

I had the same problem trying to get 2 textboxes side by side within a card, ended up finding this worked, it may not be the best way to do it, it might be messy, but it’s working for me - if there’s a better way and someone replies I’ll update to their solution :slight_smile:

New-UDGrid -Container -Content {
    New-UDGrid -Item -ExtraSmallSize 12 -Content {
        New-UDcard -Title "Person's Name" -Content {
	        New-UDGrid -Container -Spacing 4 -Content {
		        New-UDGrid -Item -ExtraSmallSize 6 -Content {
			        New-UDTextbox -Label 'First name' -Value $session:personInfo.GivenName -Disabled -FullWidth
                }
                New-UDGrid -Item -ExtraSmallSize 6 -Content {
                    New-UDTextbox -Label 'Last name' -Value $session:personInfo.Surname -Disabled -FullWidth
                }
            }
        }
    }
}