In one of my views I want to output a textbox:

Html.TextBoxFor(x=>x.Foo[0].Bar) %>

This gives me the error "Specified argument was out of the range of valid values" if Model.Foo is empty.

I have tried this with same model but with a drop down list instead:

Html.DropDownListFor(x=>x.Foo[0].Bar, Model.BarList) %>

No error...

This is not really a problem, but I think it is a strange behavior and I hope someone here can give me an explanation for it.

link|improve this question

77% accept rate
feedback

1 Answer

up vote 0 down vote accepted

It's probably due to a reason that EditorFor<> syntax trys to make a ID and a name out of a property provided in x => x...And they probaly didn't anticipate that someone would use x.Foo[0].Bar in it, but as I can remember they did anticipate that x.Foo.Bar could work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.