Hello, I tried to use the EL to set an id on a <tr:selectOneChoice> component:
<tr:selectOneChoice
id="#{field.id}"
required="#{field.required}"
value="#{genericFormBean.formDesc.modelMap[field.id]}"
<f:selectItems
value="#{genericFormBean.selectItemMap[field.itemList]}" />
</tr:selectOneChoice>
But I keep getting an IllegalArgumentException. So it seems like EL is not
supported for an ID, event the documentation says so.
Is there a workaround for that?

