Advertisement
Masinac

JSF selectKnjiga

May 22nd, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml"
  5.     xmlns:ui="http://java.sun.com/jsf/facelets"
  6.     xmlns:h="http://java.sun.com/jsf/html"
  7.     xmlns:f="http://java.sun.com/jsf/core">
  8.  
  9. <h:head>
  10. </h:head>
  11. <h:body>
  12.     <f:view>
  13.         <h:form>
  14.             <h:panelGrid columns="2">
  15.                 <h:outputText value="Id knjige"/>
  16.                 <h:inputText value="#{unosKnjigeManagedBean.selectedId}"/>
  17.                 <h:commandButton value="Ucitaj knjigu" action="#{unosKnjigeManagedBean.loadKnjiga()}" execute="@form"/>
  18.            
  19.             </h:panelGrid>
  20.         </h:form>
  21.     </f:view>
  22. </h:body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement