<?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"> <h:head> <title>Bileşenler</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> </h:head> <h:body> <h1> Örnek Seçim </h1> <h:form> Esemeli Değer: <h:selectBooleanCheckbox value="#{sampleSelectionBean.myBooleanValue}"/><br/><br/> Çoktan Tek Seçim : <h:selectOneMenu value="#{sampleSelectionBean.mySelectedValue}"> <f:selectItems value="#{sampleSelectionBean.selectableItems}"/> </h:selectOneMenu><br/><br/> Çoktan Çok Seçim: <h:selectManyListbox value="#{sampleSelectionBean.mySelectedArray}"> <f:selectItems value="#{sampleSelectionBean.selectableItems}"/> </h:selectManyListbox><br/><br/> <h:commandButton value="Gönder" action="#{sampleSelectionBean.perform()}"/><br/> </h:form> </h:body> </html>Dosyayı İndir