why model binder does not work on drop down list in edit mode ?
in edit view i write this code and test two different ddl :
@Html.DropDownList("ProductParentCategoryId", null, htmlAttributes: new { @class = "form-control" })
@Html.DropDownListFor(model => model.ProductParentCategoryId, (SelectList)ViewBag.ParentId)
and in my controller
ViewBag.ProductParentCategoryId = new SelectList(_productCategoryService.GetAllProductCategory(), "ProductCategoryId", "ProductCategoryTitle");
ViewBag.ParentId = new SelectList(_productCategoryService.GetAllProductCategory(), "ProductCategoryId", "ProductCategoryTitle");
but all textbox in edit mode fill with model binder but not happening for drop down list.
-------UpDate-------
I mean is in edit mode, model binder bind all data from database in textbox and each elements ... but in dropdownlist model binder does not bind data from database as Selected Value into dropdownlist
i find my solution The only thing that should be done in my controller:
view: