tomahawk selectOneRadio
I am trying to get two selectOneRadio components in the same group using the tomahawk selectOneRadio component. This component has a forceId parameter but it does not seem to work:
<t:selectOneRadio id="UNIQUEID" forceIdIndex="false" forceId="true" required="true" value="HELLO">
<j:selectItem itemValue="HELLO" itemLabel="HELLO" />
<j:selectItem itemValue="GOODBYE" itemLabel="GOODBYE" />
</t:selectOneRadio>
<t:selectOneRadio id="UNIQUEID" forceIdIndex="false" forceId="true" required="true" value="">
<j:selectItem itemValue="HELLOAGAIN" itemLabel="HELLO AGAIN" />
<j:selectItem itemValue="GOODBYEFORNOW" itemLabel="GOODBYE FOR NOW" />
</t:selectOneRadio>
The html output gives the first group an id of UNIQUEID and the second group an id of UNIQUEID_1
Any ideas?

