1
2
3
4
5
6
7
8
9
10
11
12
13
| <h:form>
<h:panelGrid columns="2">
#{msgs.streetAddress} <h:inputText value="#{place.streetAddress}" size="15"/>
#{msgs.city} <h:inputText value="#{place.city}" size="10"/>
#{msgs.state} <h:inputText value="#{place.state}" size="2"/>
#{msgs.zip} <h:inputText value="#{place.zip}" size="5"/>
<h:commandButton value="#{msgs.goButtonText}"
style="font-family alatino;font-style:italic"
action="#{place.fetch}"/>
</h:panelGrid>
</h:form>
|