Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.7.2
-
Component/s: ICE-Components
-
Labels:None
-
Environment:All
Description
When a selectOneRadio or selectBooleanCheckbox has focus and the user hits the enter key the closest commandButton gets submitted. Here is some sample code to reproduce this issue:
<ice:form id="form1">
<ice:selectOneRadio id="idCommitmentTime" value="1">
<f:selectItems id="sel1" value="#{testBean.selList}"/>
</ice:selectOneRadio>
<br/>
<ice:commandButton value="test it" onclick="javascript:testOne();" tabindex="2"/>
</ice:form>
<script>
function testOne(){
alert('ICEfaces');
}
</script>
<ice:form id="form1">
<ice:selectOneRadio id="idCommitmentTime" value="1">
<f:selectItems id="sel1" value="#{testBean.selList}"/>
</ice:selectOneRadio>
<br/>
<ice:commandButton value="test it" onclick="javascript:testOne();" tabindex="2"/>
</ice:form>
<script>
function testOne(){
alert('ICEfaces');
}
</script>
Problem also reproducible on SelectManyCheckBox component.