MVC4 を使用したカスタム属性ベースの検証があります
propertyinfo[]を使用して次のコードを使用して、テキストボックスにユーザーが入力した値を取得できます
PropertyInfo textBoxEnteredValue = validationContext.ObjectType.GetProperty("TxtCrossField");
しかし、ユーザーが選択したドロップダウン値を取得できません。
コードを変更する必要はありますか?
メソッド
object value
に NULL として入っています。IsValid
なぜそうなのか、何か考えはありますか?
検証
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
//Working
PropertyInfo textBoxEnteredValue = validationContext.ObjectType.GetProperty("TxtCrossField");
//How to get the selected item?
PropertyInfo selectedDropdownlistvalue = validationContext.ObjectType.GetProperty("DDlList1");
}
モデル
public class CrossFieldValidation
{
public string DDlList1
{ get; set; }
// [Required(ErrorMessage = "Quantity is required")]
[ValueMustbeInRange]
[Display(Name = "Quantity:")]
public string TxtCrossField
{ get; set; }
}
見る
@model MvcSampleApplication.Models.CrossFieldValidation
@{
ViewBag.Title = "DdlCrossFields";
}
<h2>DdlCrossFields</h2>
@using (Html.BeginForm("PostValues", "CrossFieldsTxtboxes"))
{
@Html.ValidationSummary(true)
<div class ="editor-field">
@Html.TextBoxFor(m => m.TxtCrossField)
@Html.ValidationMessageFor(m=>m.TxtCrossField)
</div>
@*@Html.DropDownList("DDlList1",(IEnumerable<SelectListItem>)ViewBag.itemsforDropdown)*@
@Html.DropDownList("ItemsforDrop", ViewBag.ItemsforDrop as SelectList,"Select A state", new {id= "State"})
<input id="PostValues" type="Submit" value="PostValues" />
}
誰かがこれについて何かアイデアを提案してくれますか...どうもありがとう....