Для каждой выбранной строки мы создаем @Html.DropDownListFor
.Исходя из выбора пользователя в каждой строке, мне нужно отобразить или скрыть разные <div>
с id
в каждой строке.
@Html.DropDownListFor(
Function(model) model.TypeID,
Model.fileTypeslst,
"Please select file type",
New With {
.style = "width:100%;",
.ID = "fileTypeLst",
.class = "fileTypeLst"
}
)