0
votes
1answer
16 views
MvcContrib FluentHtml FileUpload?
Does anyone know of a tape-safe Html.FileUpload() helper? It doesn't appear MvcContrib.FluentHtml has such a method. What are my options other than using reflection?
1
vote
2answers
25 views
What happened to MVCContrib Subcontrollers
I see several articles on the interwebs about MVCContrib's subcontroller feature, but I don't see anything on the codeplex site about it.
Has this feature been supplanted by som …
0
votes
1answer
28 views
MVC Contrib Input Builders and Spark View Engine
In Eric Hexter's Input Builders, different templates use different strongly-typed models; for example String uses PropertyViewModel<object>, DateTime uses PropertyViewModel&l …
1
vote
2answers
42 views
How can I make Input Builders (MVC Contrib) work with Spark View Engine?
Today I spent a good three hours trying to convert the project MvcContrib.Samples.InputBuilders, included in MVC Contrib to make it work with Spark View Engine, but so far was unab …
1
vote
2answers
39 views
MVCContrib, Html.Grid: How can I attach a row-based id to a td tag?
Here's my current view code:
<% Html.Grid((List<ColumnDefinition>)ViewData["Parameters"])
.Columns(column =>
{
column.For(c => c.ID);
column.Fo …
0
votes
0answers
21 views
Do Input Builder attributes in MVC Contrib support localization?
With Data Annotations for example, besides decorating members like this:
[Required(
ErrorMessage = "You must enter your first name."
)]
public int FirstName { get; set; }
I …
0
votes
1answer
35 views
Cannot use fluent html lambda expressions in Spark view
I'm attempting to use fluent html and the spark view engine in my asp.net mvc application.
I've assinged the proper base class, added the assemblies, and when i do this.TextBox("My …
0
votes
0answers
14 views
how to create a new convention for a mvc contrib input builder
I have created a new aspx for my new type of property IEnumerable which is not supported by default in mvc contrib, atm to use it by default without the need to put the attribute [ …
0
votes
2answers
20 views
Input builder for a DropDownList with data from DB in mvc contrib
I have something like this
public class Person
{
public Country {get; set;}
}
public class PersonInput
{
public ImNotSureWhatShouldIUseHere Country {get; set;}
}
there is a …
0
votes
4answers
123 views
ASP.net MVC - How to persist model over various views.
Situation: In some project management software written in asp.net I have a create project page (working fine). I need to add to this the ability to add tasks from a list of templa …
0
votes
3answers
109 views
DRY in the MVC View
I've been working a lot with asp.net web forms and one think that I like about the is the consistency with the generated markup e.g. if you create a composite control for a TextFie …
0
votes
2answers
64 views
Using MVC Contrib FluentHtml in Views
If I understand things correctly, to use MVC Contrib's FluentHtml in my Views, I need to change my Views to inherit from MvcContrib.FluentHtml.ModelViewPage instead of System.Web.M …
0
votes
2answers
48 views
How to set Foreign Key object using Entity Framework and FluentHtml
What I'm looking to do is set a Foreign Key object in an EF entity via FluentHtml. I have an entity of Foo with a reference to the object Bar via Foo.Bar. What I am trying to do is …
0
votes
1answer
52 views
Sorting with MVCContrib
Does anyone know how to sort the MVCContrib grid when using a complex object.
My grid is displaying a list of Person and I'm trying to sort on the Country property. The problem is …
0
votes
1answer
190 views
Using Request.Files.Count with TestControllerBuilder from MvcContrib?
I have a controller action in ASP.NET MVC that handles uploaded files. However, it seems there is no way to call Request.Files.Count while using MvcContrib's TestControllerBuilder. …
