I am trying to use the New-UDTransferList in my dashboard but it doesn’t use the whole desktop-width it is limited by the css “.jss12” . Is this an error?
Universaldesktop 3.1.6 with the sample code from the docu:
New-UDDashboard -Title 'PowerShell Universal' -Content {
New-UDTransferList -Item {
New-UDTransferListItem -Name 'test1 with a very long text' -Value 1
New-UDTransferListItem -Name 'test2 not as long' -Value 2
New-UDTransferListItem -Name 'test3' -Value 3
New-UDTransferListItem -Name 'test4' -Value 4
New-UDTransferListItem -Name 'test5' -Value 5
} -id "tl" -SelectedItem @('4', '1')
}
Hey @lubeda In the interim remember there is New-UDStyle which should allow you to override the setting and customise it to your needs. I recently used New-UDStyle to overcome an display issue I had with a custom component
Honestly I believe New-UDStyle will still solve this issue as it will apply the styling directly to the component regardless of the ID, I am using it for a custom component here:-