MF Leong:
I am looking at the Example - Checkbox , radio and switch Validating. Is there a way to extend the height of the listbox? It is very tedious to scroll inside that small window if the list is long. Thank you
Delfs:
You could target it with CSS id think
Delfs:
I’m away from computer so can’t make an example at the moment
Owen Reese:
I actually ran across this issue today too. I couldn’t expand the height of it with CSS (but I’m also bad at CSS).
It appeared that the list is wrapped inside another element that prevented it from being enlarged.
@MF Leong
if you find a way to do this, please let me know. I’ll try again tomorrow and let you know if I can find a solution.
Otherwise, I was considering just using HTML to build it myself.
Delfs:
I’m sure we can target. I will have a look as soon as I can.
Delfs:
.vue-form-generator .field-checklist .listbox {
max-height: 250px;
}
The default is 150px
!Boom
Delfs: