I have the following block of code:

                        <tr:selectBooleanCheckbox id="same"
autoSubmit="true"
                                value="#{orderForm.samePostalAddress}"

label="#{msgBundle['address.label.samePostal']}"

valueChangeListener="#{orderForm.doAssignPostalAddress}" />
                            <tr:subform>
                                <tr:panelFormLayout>
                                    <tr:selectOneRadio id="paSubType"
required="true" partialTriggers="::same"

value="#{orderForm.order.postalAddress.addressSubtype}">
                                        <tr:forEach var="aType"
items="#{orderForm.postalAddressSubtypeList}">
                                            <f:selectItem
itemLabel="#{aType.fieldName}"

itemValue="#{aType.fieldCode}" />
                                        </tr:forEach>
                                    </tr:selectOneRadio>
                                </tr:panelFormLayout>
                            </tr:subform>

I don't know if I'm doing something wrong but when you click on the checkbox
isn't the radio (id=paSubType) supossed to be repainted?

Thanks.

Reply via email to