Tagged Questions

0
votes
0answers
10 views

MvcContrib ShouldMapTo TestHelper throws AssertionException unexpectedly

I'm getting an expected error with my route testing using MvcContrib's ShouldMapTo function. According to the results, everything is fine, but the helper throws an AssertionException with an …
0
votes
1answer
29 views

Hierarchical Grid with MVCContrib

I am trying to come up with the best solution for creating a hierarchical grid in my ASP.NET MVC project. First, I looked at jqGrid, and found it's "treeGrid" option which is exactly what I'm looking …
1
vote
1answer
23 views

Using Spring.Net to inject dependencies into ASP.NET MVC ActionFilters

I'm using MvcContrib to do my Spring.Net ASP.Net MVC controller dependency injection. My dependencies are not being injected into my CustomAttribute action filter. How to I get my dependencies into …
1
vote
2answers
40 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
53 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 …
0
votes
0answers
31 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 …
1
vote
2answers
64 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); …
1
vote
2answers
79 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 …
0
votes
1answer
77 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
2answers
37 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
2answers
66 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
4answers
182 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
2answers
103 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
3answers
118 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
1answer
66 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 …

1 2 3 next
15 30 50 per page