Popular select option based on choice of another select option

0

Hello,

I'm popping a select option using useBean .

<jsp:useBean id=“catDAO” class=“contas.categoria.CategoriaDAO”/>

<c:forEach var=“categoria” items="${categoriaDAO.lista}">

<option value="${categoria.idcategoria}">${categoria.descricao}</option>                

</c:forEach>

I need to populate a new select based on selecting the select category. How do I do this?

    
asked by anonymous 06.09.2018 / 16:52

0 answers