Does anyone know how to show a listbox rather than a input relation dropdown, as I am building a complex UI and would much rather show a listbox to users not a dropdown list, as less clicks required.
Many Thanks
Jonathan
ps. I would rather not use the Tiles presenter, but it seems the option available to me currently.
I have a CSS override workaround for now…
For anyone else wanting this functionality, I have added some CSS to the Last Style Sheet for the Theme as shown below and even though I am using the Tiles presenter it now looks a lot more like a list box.
.tiles_group .btn-multi-choice {
display: block; // ensure each list item appears on its own line, not one after the other
width: 100%; // make each list item full width of available white-space: ;
text-align: left; // align text to the left
border: 1px solid #ffffff; // thin white border for each list align-items: ;
}
.tiles_group .btn-multi-choice.selected {
background-color: #64A70B; // sets the bg color to green when selected
}
The original Tiles presenter looked like this
And now with the CSS overrides it looks like this
Whilst this isnt a perfect solution, it will do until I find a Listbox presenter.