Good morning,
I have a DropDownList populated from a Model class. example: Processor, Memory, HD
Afterclicking"+" I have to add another DropDownList with all values less than the value selected in the previous Combo.
@if (Model.ListAtributoAtivo != null)
{
@Html.DropDownListFor(model => model.idAtributo, Model.AtributosFiltroList, @Resource.Selecionar)
<a onclick="return add(this)"><img src="../../images/icon-3.png" alt="icon"></a>
}
I have tried using knout.js but it is not easy to implement it.