Hi:
I am developing a jsf project, I am having touble with getting selectOneMenu to work.
<h:selectOneMenu value="#{employeeEditBean.employeeBean}">
<f:selectItems value="#{employeeEditBean.branchList}" />
</h:selectOneMenu>
public class ...
Hi Gregg: Yes, this is my class constructor. How would a list *not* be populated, the only way I can think of is if the constructor is not called... Here is the entire class file: package com.dtn.petro2.petro_admin; import com.dtn.petro2.petro_lib.TransactFinder; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.faces.model.SelectItem; public class transactionBrowserBean implements Serializable { private String url = "jdbc/__Test"; private String user ...