I created a form that is populated from a database for editing existing records. When I pull up a record and try to change any of the data in the pulldown menu it sends the original data to the database. How can I create a pulldown from database/list values that when a new value is selected the value will be updated.
Here is some code from one of my pulldowns: <html:select property="oppFinancialAnalyst" value="${sessionScope.opportunity.financialAnalyst}"> <c:forEach items="${sessionScope.analystList}" var="analyst"> <html:option value="${analyst.id}"><c:out value="${analyst.lastName}, ${analyst.firstName}"/></html:option> </c:forEach> </html:select> Thanks!!! :) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]