View Code:
@Html.DropDownListFor(m => m.mode, new List<SelectListItem>
{
{
new SelectListItem{ Text="Select", Value = "10000" },
new SelectListItem{ Text="Add", Value = "10001" },
new SelectListItem{ Text="Modify", Value="10002" }
}, htmlAttributes: new { @class = "form-control", @id = "cboFunctions", @onChange = "FunctionChange();" })
after disabled by java-scrip code its not passing value from view to controller.
$("#cboFunctions").prop("disabled", true);
i'm also try store value in hidden field but not passing value
any help would be appreciated Thanks.