ドロップダウンから値を変更する JavaScript があり、フォームを保存すると、サーバー側で値を取得できません。
以下のコードに従ってください。
<div class="editor-field">
@Html.DropDownListFor(model => model.CategoriaId,
Model.Categorias
.Where(c => c.Id != Model.ContentId)
.Select(c => new SelectListItem {
Selected = c.Id == Model.CategoriaId,
Text = c.Type + " - " +c.Name,
Value = c.Id.ToString()
} ),
"Selecione uma Categoria")
@Html.Hidden("hdnValue", Model.hndCategoriaId) // my hidden value
</div>
ドロップダウンと非表示の値を変更する Javascript
function change(item) {
var valueArtigo;
var ddl = document.getElementById('Categoria_CategoriaId');
for (i = 0; i < ddl.options.length; i++) {
if (ddl.options[i].text.toUpperCase().indexOf("ARTIGOS") != -1)
valueArtigo = ddl.options[i].value;
}
document.getElementById("Categoria_CategoriaId").value = valueArtigo;
document.getElementById("Categoria_hdnValue").value = valueArtigo;
}
サーバー側に戻って、データベースに値を保存しようとしています。
public void UpdateCategoriaForContentItem(ContentItem item, EditCategoriaViewModel model)
{
if ((model.CategoriaId != null)||(model.hndCategoriaId != null)) // both are null
{...}
}
ありがとう、