Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
kể từ khi các thuộc tính cột được thiết lập cho bảng điều khiển này, hai thành phần tại một thời điểm sẽ được đặt vào một hàng, sau đó một hàng mới sẽ được tạo ra cho hai, cho đến khi có các thành phần trẻ em không có nhiều hơn nữa. | UI Components 219 public InvoiceBean paymentTerms.add new SelectItem 0 On Receipt paymentTerms.add new Selectitem 30 Net 30 Days paymentTerms.add new Selectitem 60 Net 60 days public List getPaymentTerms return paymentTerms public void setPaymentTerms List paymentTerms this.paymentTerms paymentTerms public String getPaymentTerm return paymentTerm public void setPaymentTerm String paymentTerm this.paymentTerm paymentTerm Now we can add tags to Modifylnvoice.jsp see Listing 6.12 to render a drop-down menu based on the list of Selectitems stored in the paymentTerms property h selectOneMenu id terms value modifYInvoicePage.invoice.paYmentTerm f selectitems value modifYInvoicePage.invoice.paYmentTerms h selectOneMenu The selectOneMenu tag will render a drop-down list that is bound to the bean property referenced by the tag s value attribute in this case the InvoiceBean s paymentTerm field . The options list in the resulting HTML select element will be generated from the list of Selectitems contained in the paymentTerms field identifed by the nested selectitems tag. Similarly we could follow the same set of steps used in the previous example to add a set of radio buttons. First here s the new code we need to add to the InvoiceBean class List of possible order status codes private List statuscodes new ArrayList Current order status private String statuscode public InvoiceBean . statusCodes.add new Selectitem 1 Open statusCodes.add new Selectitem 2 Past Due 220 Chapter 6 statusCodes.add new SelectItem 3 Paid public List getStatusCodes return statuscodes public void setStatusCodes List statuscodes this.statusCodes statuscodes public String getStatusCode return statusCode public void setStatusCode String statusCode this.statusCode statusCode . Now we can add the JSP tags h selectOneRadio id status value modifyInvoicePage.invoice.statusCode f selectItems value modifyInvoicePage.invoice.statusCodes h selectOneRadio As you can see the only real difference between the drop-down