I have an ASP.NET MVC application that is using a single view to display the properties and children (with their properties) of a model entity.

My model looks something like this:

public class Market
{
    public int ID { get; set; }
    public string Name { get; set; }
    public string Description { get; set; }
    public IList<EmailAddress> EmailAddresses { get; set; }
}
public class EmailAddress 
{
    public virtual int ID { get; set; }
    public virtual int MarketID { get; set; }
    public virtual string Email { get; set; }
}

On the view, I want to use a table to display the list of related email addresses. To do this, I am using Html.Grid.

<%= Html.Grid(Model.EmailAddresses).Columns( column =>
    {
        column.For(x => x.Email + Html.Hidden("ID", x.ID)).Encode(false).Sortable(false);
    })
    .Attributes(style => "width:100%")
    .Attributes(id => "emailGrid")
    .Empty("There are no Email Addresses set up") %>

However, when I do this, the hidden ID is that of the parent entity Market, not that of the EmailAddress.

How do I remedy this?

link|improve this question

I removed the virtual attributes of the email model, as it was pointed out that they were incorrect. It made no difference in the outcome. – Bill Sempf Dec 2 '11 at 16:33
1  
Bill - This works for me almost as written. There's a problem with EmailAddress having a member named EmailAddress, though: "Member names cannot be the same as their enclosing type". When I changed it to TheEmailAddress, it worked fine. – Robaticus Dec 2 '11 at 18:27
2  
@Robaticus I started a bounty on this as a favor to Bill, before realizing you'd commented. If the issue truly is the naming of the field, would you create an answer to that effect so that you can earn the bounty? – Seth Petry-Johnson Dec 5 '11 at 18:33
That's not the problem .. but it IS a problem. When I run this it still doesn't put the child ID in the ID field. I think it is more aobut the IDs being named the same, and less about anything else, but I am not sure. – Bill Sempf Dec 5 '11 at 19:35
Oh, and thanks, Seth. – Bill Sempf Dec 5 '11 at 19:37
show 1 more comment
feedback

3 Answers

up vote 1 down vote accepted

It seems it could be a bug in the WebGrid. Have you tried renaming your ID field in the EmailAddress class, e.g. EmailID and pass that to the WebGrid and see if it displays correctly?

link|improve this answer
No, but I will try that and let you know. – Bill Sempf Dec 8 '11 at 13:41
Did that work, Bill? – eth0 Dec 11 '11 at 20:35
I can't change it. It is that way all the way down through the service layer, and if I change the Model Automapper breaks. – Bill Sempf Dec 12 '11 at 14:22
@BillSempf: are you aware that you can override the default conventions in Automapper? If you change the model property, you can use Mapper.CreateMap<S,D>().ForMember(...) to manually specify how specific fields should be bound. – Seth Petry-Johnson Dec 12 '11 at 15:37
I did NOT know that! Hmm, lemme give that a try here... – Bill Sempf Dec 12 '11 at 15:44
show 3 more comments
feedback

This works for me, could it be that you have something wrong in the filling of your model?

link|improve this answer
I don't think so. In the debugger, the model has the correct IDs, but the Grid is populating with the parent ID. If I don't use the grid and instead use a foreach loop to manually make a table it works fine. – Bill Sempf Dec 8 '11 at 13:41
feedback

Since you're using the lambda expression for the Column.For() method, the x parameter is re referring to a single email. I think you mean to refer to the Model, not a single email ID

Instead of doing x.ID, I think you just want Model.ID

link|improve this answer
No, the Grid wprks, and shows me all of the emailaddresses. x.Email works, and is clearly an EmailAddress object. Model.ID gives me the ID of the Market as it should. – Bill Sempf Dec 12 '11 at 14:23
@BillSempf Ah, my mistake. I misread that sentence after the grid code. My apologies. – DavidAndroidDev Dec 12 '11 at 15:25
feedback

Your Answer

 
or
required, but never shown

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