문제

I want to achieve something like this in Icefaces. HTML has a legend tag which helps. Is there any way to use that tag in IceFaces ? If not, how can we do this in IceFaces ?

도움이 되었습니까?

해결책

The fieldset element just represents a set of form controls, you can do this:

<fieldset>
    <legend>Display:</legend>
    <h:selectOneRadio value="#{saveDVDBean.title}">
        <f:selectItem itemValue="gf1" itemLabel="GodFather I" />
        <f:selectItem itemValue="gf2" itemLabel="GodFather II" />
        <f:selectItem itemValue="gf3" itemLabel="GodFather III" />
    </h:selectOneRadio>
</fieldset>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top