Harry McIntyre

Results 134 comments of Harry McIntyre

Thanks for drawing this to my attention. If you checkout the repo, and run one of the example projects, then that should show you the docs. However, the fact that...

It sounds like the embedded file system provider in a asp.net 3 doesn't work with FormFactory, which is compiled against 2.0 At some point, when I get the time, I'll...

I'm afraid I have very little time at the moment. If someone could submit a Pull Request with necessary changes, I'd be happy to accept it * * both Example...

If you install the templates locally into your project, the local copies take priority over the ones loaded from assembly. You can therefore update the copied templates to reflect the...

One thing you can do is create a static model that does what you want (like in the examples), then call ToPropertyVms() on it, then examine it in the debugger,...

TBH the row/cell stuff is unfinished. I would recommend starting from scratch by creating a `class YourProject.Table` and a `~/Views/Shared/FormFactory/Property.YourProject.Table.cshtml` file. If you get good results, it would be awesome...

BTW I don't know if you've seen one of my other projects? https://github.com/mcintyre321/mvc.jquery.datatables

``` var formModel = new[] { new PropertyVm(typeof(IEnumerable) , "RestrictedMaterials") { DisplayName = "RestrictedMaterials", Choices = new[] { "Guns", "Knives", "Explosives", "Nuclear Waste", "Weaponised Viruses" }, Value = new[] {"Guns",...

Something like: ``` var formModel = new[] { new PropertyVm(typeof(List) , "movies") { DisplayName = "Movies", NotOptional =true, Value = new List() { new Movie() {Title = "Fight Club"}, new...