In my application I have three dropdown menu (p:selectOneMenu
), say A, B, C. Among them two are dependent, say B and C. By changing the value of B I am dynamically loading values to C. Also there is a textbox. The value of the textbox is generating by ajax when the on-change event is firing from these three dropdowns.
Here is the xhtml:
<p:selectOneMenu id="customerMenu" value="#{adminController.activityDTO.customerId}" required="true" label="Customer Name" style="width: 200px">
<f:selectItem itemLabel="Select One" itemValue="" />
<f:selectItems value="#{adminController.customers}" var="customer" itemLabel="#{customer.customerName}" itemValue="#{customer.customerId}" />
<p:ajax listener="#{adminController.generateActivityName}" update="activityId" />
</p:selectOneMenu>
<p:selectOneMenu id="activityTypeMenu" value="#{adminController.activityDTO.activityParentType}" required="true" label="Activity Type"
style="width: 200px">
<f:selectItem itemLabel="Select One" itemValue="" />
<f:selectItems value="#{adminController.activityTypes}" var="activityType" itemLabel="#{activityType.parent}" itemValue="#{activityType.parent}" />
<p:ajax listener="#{adminController.updateDependentActivity}" update="activitySubType" />
</p:selectOneMenu>
<p:selectOneMenu id="activitySubTypeMenu" value="#{adminController.activityDTO.activitySubType}" required="true" label="Activity Sub Type"
style="width: 200px">
<f:selectItem itemLabel="Select One" itemValue="" />
<f:selectItems value="#{adminController.activitySubTypes}" var="activityType" itemLabel="#{activityType.name}" itemValue="#{activityType.id}" />
<p:ajax listener="#{adminController.generateActivityId}" update="activityId" />
</p:selectOneMenu>
<p:inputText id="activityId" autocomplete="off" readonly="true" value="#{adminController.activityDTO.activityId}"
label="#{adbBundle['admin.addActivityPanel.addActivityTable.activityId']}" required="true" />
The activityTypeMenu
and activitySubTypeMenu
are dependent, by the selected value of the activityTypeMenu
I am populating the activitySubTypeMenu
.
Now the problems that I am facing is:
- Say I have select "External" and "Internal" in
activityTypeMenu
and default "Select One". If I choose "External" fromactivityTypeMenu
theactivitySubTypeMenu
will have "Project" and "Service". But then if I choose the default "Select One" theactivitySubTypeMenu
is still holding the previously dynamically populated values. This is because therequired="true"
attribute resisting to fire the backend method from which I am loading the dynamic value. - I have tried to set the
itemValue
of<f:selectItem itemLabel="Select One" itemValue="" />
to#{null}
and then the backend method is firing on selecting the "Select one" option and I can set an empty list toactivitySubTypes
and this way theactivitySubTypeMenu
get empty. But in that case therequired="true"
is getting meaningless. I mean, I also have save button and on clicking that button without selecting any option (that is selecting "Select one") fromactivityTypeMenu
andactivitySubTypeMenu
not throwingValidatorException
and the components are not getting styled by the error css class of Primefaces. - Also if I don't set the
itemValue
of<f:selectItem itemLabel="Select One" itemValue="" />
to#{null}
then on-changing to selected value to default option("Select one") does not clearing out theactivityId
p:inputText
. If I use#{null}
then I can get the backend method firing from which I can set the value of the textbox to empty.
How ca i solve this issues and get desired result. What I want are:
- If the option is set to "Select one" then the dependent menu will be empty and that of the textbox.
- I want to use the
required="true"
attribute.
process="@this"
attribute inp:ajax
tags? That avoids the validation of other form components, because only the component you're changing is processed by the JSF lifecycle. If not working, the easiest (but not best) way to get it work would be getting rid ofrequired="true"
attributes and validate the whole form entirely when it's sent. Good luck. – Xtreme Bikerp:ajax
defaults to@this
. – Xtreme Bikerp:ajax
default value is@this
– Tapas BosenoSelectionOption="true"
flag on your<f:selectItem/>
. It is a reserved flag that causes the runtime to evaluate your selection differently. – kolossusnoSelectionOption
. – Tapas Bose