1
vote
2answers
33 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 something in MVC2?
…
0
votes
1answer
33 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<DateTime>, Form …
1
vote
2answers
51 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 unable to do so.
Does …
1
vote
2answers
46 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.For(c => c.Name);
…
0
votes
0answers
25 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 can also do it like …
0
votes
1answer
50 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("MyProperty") it works …
0
votes
0answers
17 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
24 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 input builder for …
0
votes
4answers
145 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 templates to this project …
0
votes
3answers
111 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 TextField you can control …
0
votes
2answers
84 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.Mvc.ViewPage.
Will I …
0
votes
2answers
55 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 set the value of …
0
votes
1answer
54 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 that Country is a …
0
votes
1answer
205 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.
I know I can work …
3
votes
5answers
264 views
ASP.NET MVC partial views: input name prefixes
Suppose I have ViewModel like
public class AnotherViewModel
{
public string Name { get; set; }
}
public class MyViewModel
{
public string Name { get; set; }
public AnotherViewModel Child { …
