This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JSF and the fly likes radio button not working properly, list is sorted for every two clicks Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "radio button not working properly, list is sorted for every two clicks" Watch "radio button not working properly, list is sorted for every two clicks" New topic
Author

radio button not working properly, list is sorted for every two clicks

tej ku
Greenhorn

Joined: Mar 13, 2010
Posts: 19
Hi,
I am trying to use a radio button for ascending and descending a list of items but the list is sorted if we click two times radio button
(1 click descending radio button and second click ascending radio button now descended item list are displayed.)

<tr>
<td colspan="3">
<h:panelGrid columns="6" cellpadding="0" cellspacing="0">
<hutputLabel escape="false" styleClass="label" value="Sort By: " for="sortBy" />
<h:selectOneMenu id="sortBy" value="#{decFilter.sortBy}">
<f:selectItems value="#{decInProgressAction.orderByList}" />
<a:support event="onchange" action="#{decInProgressAction.doFiltering}"
reRender="mainForm" ignoreDupResponses="true" eventsQueue="default" />
</h:selectOneMenu>
<h:selectOneRadio value="#{decFilter.ascDesc}">
<f:selectItems value="#{decInProgressAction.orderByAscDescList}" />
<a:support event="onchange" action="#{decInProgressAction.doFiltering}"
reRender="mainForm" ignoreDupResponses="true" eventsQueue="default" />
</h:selectOneRadio>
</h:panelGrid>
</td>
</tr>
tej ku
Greenhorn

Joined: Mar 13, 2010
Posts: 19
I just found it is working fine in FIREFOX not in internet explorer..........
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: radio button not working properly, list is sorted for every two clicks
 
Similar Threads
Enable dynamic inputText
Any idea what could cause new <br> tags to get added to the rendered code?
JSF + AJAX + RichFaces
a4j:support onchange event not firing
How to control the length of <selectonemenu while while data is coming from database