I have OptionGroup component and many checkboxes in there. I want to change width (or another css property) on only one checkbox.
Is it possible to do that?
I have OptionGroup component and many checkboxes in there. I want to change width (or another css property) on only one checkbox.
Is it possible to do that?
Copyright © 2021 Jogjafile Inc.
It seems to be not possible with the current Vaadin API (7.6.6) but there is an add-on FlexibleOptionGroup which supports individual items. If your item in the
OptionGroupis at a fixed position, you could use n-th element selector of CSS to change its style. The Valo theme demo shows anOptionGroupwith explicit width, maybe this fits in your case.