I have a requirement to have a space between the checkbox and dropdown list items, where dropdown items are dynamically retrieved from BackingBean.
I tried
itemLabel="#{''.concat(' ').concat(bean.listValues)}"
I also tried taking an emptyString variable from backing bean and concatanating it.
itemLabel="#{bean.emptyString.concat(' ').concat(bean.listValues)}"