Setup:
I have scaffolded a controller using MvcScaffolding.
For a property, Model.IdCurrencyFrom, the scaffolding created an Html.DropDownListFor:
@Html.DropDownListFor(model => model.IdCurrencyFrom,
((IEnumerable<FlatAdmin.Domain.Entities.Currency>)ViewBag.AllCurrencies).Select(option => new SelectListItem {
Text = (option == null ? "None" : option.CurrencyName),
Value = option.CurrencyId.ToString(),
Selected = (Model != null) && (option.CurrencyId == Model.IdCurrencyFrom)
}), "Choose...")
This works fine, both with new records, or editing existing ones.
Problem:
There are only 3 currencies, AR$, US$ and GB£. So, instead of a drop down list, I want a ListBox.
So I changed the above to:
@Html.ListBoxFor(model => model.IdCurrencyFrom,
((IEnumerable<FlatAdmin.Domain.Entities.Currency>)ViewBag.AllCurrencies).Select(option => new SelectListItem {
Text = (option == null ? "None" : option.CurrencyName),
Value = option.CurrencyId.ToString(),
Selected = (Model != null) && (option.CurrencyId == Model.IdCurrencyFrom)
}))
I now get an ArgumentNullException, Parameter name: source, but only when editing an existing record. Creating new records, this works fine.
Questions:
What is happening?!
Nothing has changed. Switching back to DropDownListFor and it all works fine. Switching to ListBox (as opposed to ListBoxFor) and I get the error.
The model is not null (like I said, it works fine with the DropDownListFor)... and I've run out of ideas.
option == nullon theValueline. Was that just an oversight? – BuildStarted Oct 14 '11 at 0:13ViewBag.AllCurrenciesis null. I would definitely check to make sure it's not null in your action method. I know you said it's not null but thesourceparameter refers to theSelectmethod parameter. – BuildStarted Oct 14 '11 at 0:19