Skip to content

Commit

Permalink
Updated RadioButton example with new Java versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCoder4eu committed Dec 31, 2018
1 parent 389fd5c commit 5de01f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/webapp/forms/RadioButton.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<b:panel title="Live preview" look="info" collapsible="false">
<b:form>
<p>Which Java version do you use?</p>
<b:panelGrid size="xs" columns="5">
<b:panelGrid size="xs" columns="6">
<b:radiobutton value="#{radiobuttonBean.javaVersion}" itemLabel="Java 7" itemValue="7" required="true" />
<b:radiobutton value="#{radiobuttonBean.javaVersion}" itemLabel="Java 8(LTS)" itemValue="8" />
<b:radiobutton value="#{radiobuttonBean.javaVersion}" itemLabel="Java 9" itemValue="9" disabled="true"/>
Expand All @@ -56,7 +56,7 @@
<![CDATA[
<b:form>
<p>Which Java version do you use?</p>
<b:panelGrid size="xs" columns="5">
<b:panelGrid size="xs" columns="6">
<b:radiobutton value="&num;{radiobuttonBean.javaVersion}" itemLabel="Java 7" itemValue="7" required="true" />
<b:radiobutton value="&num;{radiobuttonBean.javaVersion}" itemLabel="Java 8(LTS)" itemValue="8" />
<b:radiobutton value="&num;{radiobuttonBean.javaVersion}" itemLabel="Java 9" itemValue="9" disabled="true"/>
Expand Down

0 comments on commit 5de01f3

Please sign in to comment.