Hi,
I am using listbox and I want to hidden the down arrow on the right side.
I found some thread mentioned the usage of data-dropdown for mobil but I am creating web application and I could not find the data-dropdown in style sheet.how can I hidden the down arrow icon?
Hi Jason,
Could you be specific which widget you are using?
List ? Dropdown? Table? ListItem?
Do we have listbox in outsystems?
Thanks
Rama
jason zhang wrote:
For Dropdown search
Try this css
.choices[data-type*="select-one"]:after {display:none}
For Dropdown
Try this
.dropdown-container:after {display:none}
Hope this helps
AD
Hi jason zhang,
Please try below css
.select[multiple="multiple"] {
background-image: none;
}
When we apply above CSS :
Hope this will help you :)
Please let me know if you have any query.
- AV