X Tutup
Skip to content

Commit a75d4cf

Browse files
committed
Fixed EL expression
Signed-off-by: Dominik Schadow <dominikschadow@googlemail.com>
1 parent e63d772 commit a75d4cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Ch05_AccessReferenceMaps/src/main/webapp/index.xhtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<h:inputText label="Account ID" value="#{account.accountId}" id="accountId">
2424
<f:validateLongRange minimum="1" maximum="100"/>
2525
</h:inputText>
26-
<h:commandButton value="Submit" action="#{account.show()}" styleClass="send-button"/>
26+
<h:commandButton value="Submit" action="#{account.show}" styleClass="send-button"/>
2727
</h:panelGrid>
2828
</h:form>
2929

@@ -38,7 +38,7 @@
3838
<h:inputText label="Account Reference" value="#{accountInteger.iaAccountId}" id="iaAccountId">
3939
<f:validateLongRange minimum="1" maximum="100"/>
4040
</h:inputText>
41-
<h:commandButton value="Submit" action="#{accountInteger.show()}" styleClass="send-button"/>
41+
<h:commandButton value="Submit" action="#{accountInteger.show}" styleClass="send-button"/>
4242
</h:panelGrid>
4343
</h:form>
4444

@@ -51,7 +51,7 @@
5151
<h:panelGrid columns="3">
5252
<h:outputLabel value="Account Reference" for="raAccountId"/>
5353
<h:inputText label="Account Reference" value="#{accountRandom.raAccountId}" id="raAccountId"/>
54-
<h:commandButton value="Submit" action="#{accountRandom.show()}" styleClass="send-button"/>
54+
<h:commandButton value="Submit" action="#{accountRandom.show}" styleClass="send-button"/>
5555
</h:panelGrid>
5656
</h:form>
5757
</h:body>

0 commit comments

Comments
 (0)
X Tutup