1
Good morning,
I have a Dropdownlist populated from a Model class. Example: Processor, Memory, HD
After clicking "+" I have to add another Dropdownlist with all values less 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’ve tried using knout.js but it’s not easy to implement it.