The issue was identified in Event Booking component but concerns Joomla 4 back-end template. When asking the development team, they told me it was a Joomla 4 back-end template issue so I write this bug report.
When opening dropdown, the list is supposed to jump to the selected item, even if it's "deep" in the list.
Screenshot from Joomla 3.10.11 (EventBooking 3.17.6)
When opening dropdown, the list starts from the beginning. You have to scroll down to the selected item position.
Screenshot from Joomla 4.2.8 (EventBooking 4.4.2)
Joomla! 4.2.8 Stable [ Uaminifu ] 16-February-2023 15:00 GMT
PHP 8.0.28
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/110.0
In EventBooking, we add custom CSS to set the appearance of selected item in the list:
.choices__item--choice.is-selected:not(.is-highlighted)
{
background-color: var(--template-bg-dark);
color: white;
}
.choices__item--choice.is-selected.is-highlighted
{
background-color: var(--template-link-hover-color);
color: white;
}
Labels |
Added:
No Code Attached Yet
|
Labels |
Added:
?
|
The choices script we use does not have this feature and it doesnt appear to be actively developed. Maybe another script has the requested functionality