Using the RC build I created an EF based MVC controller based on the following model type:
namespace ContactManager.Models
{
public class Contact
{
public int ContactId { get; set; }
public string Name { get; set; }
public string Address { get; set; }
public string City { get; set; }
public string State { get; set; }
public string Zip { get; set; }
public string Email { get; set; }
public string Twitter { get; set; }
}
}
The generated views seem to have some layout problems.
- No left margin (really wierd on the Create view)
- Column headers have to spacing between them unless the columns have content
- Form text boxes resize with the window up to a point but then they suddenly collapse to a narrow width if the window becomes too wide
Seems like the generated views could use some designer love.
Comments: We are not updating MVC4 scaffolders any more. We shipped all new scaffolders for MVC5
namespace ContactManager.Models
{
public class Contact
{
public int ContactId { get; set; }
public string Name { get; set; }
public string Address { get; set; }
public string City { get; set; }
public string State { get; set; }
public string Zip { get; set; }
public string Email { get; set; }
public string Twitter { get; set; }
}
}
The generated views seem to have some layout problems.
- No left margin (really wierd on the Create view)
- Column headers have to spacing between them unless the columns have content
- Form text boxes resize with the window up to a point but then they suddenly collapse to a narrow width if the window becomes too wide
Seems like the generated views could use some designer love.
Comments: We are not updating MVC4 scaffolders any more. We shipped all new scaffolders for MVC5