Is it possible that add colorful items in dropdown in Wicket? Dropdown will take its values from enum class.
For example, enum class has ‘red,yellow,green’ elements. Sections of dropdown will be green, red, yellow colors according to element.
How can i make that?
Is it possible to use an AttributeModifier on the DropDownChoice?
Is it possible that add colorful items in dropdown in Wicket? Dropdown will take
Share
See http://examples8x.wicket.apache.org/compref/wicket/bookmarkable/org.apache.wicket.examples.compref.SelectPage
Select component is more flexible than DropDownChoice, but it also consumes more memory due to the usage of a SelectOption component for each <option>.