Changes include :-
DataTables list template
jquery date picker integration
HelperText attribute for model classes
public class Customer
{
[Required]
[StringLength(50)]
[HelperText("Enter your full name")]
[Display(Name = "Customer Name")]
public string Name { get; set; }
[HelperText("Some default text")]
[Display(Name = "Checkbox option")]
public bool IsCheckbox { get; set; }
}A set of changes to style the default MVC template to use Twitter Bootstrap.
It also provides some scaffolding to use the same templates for new Controller Views.
Download from nuget into your solution.
Copy the required views from Views-Bootstrap over Views, and build some new controllers, or new views from existing controllers.
Tweak as required :)
I take Pull Requests, please show me what you would fix and some examples and we'll upgrade the nuget package for any appropriate changes.