Tagged Questions
This project was designed to add functionality and ease-of-use to Microsoft's ASP.NET MVC Framework, MVC Contrib is useful for developers looking to develop and test UI elements on top of the ASP.NET MVC framework.
23
votes
7answers
4k 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 { ...
16
votes
3answers
3k views
Multiproject areas in ASP.Net MVC 3
Does any one have any idea about multiproject area support in asp.net mvc 3? As it was degraded to future status in mvc 2. If it is still not included then should we look forward for ASP.Net MVC ...
12
votes
3answers
7k views
Use MVCContrib grid for editing
I just started using the MVCContrib grid in a test project. I'm having a difficult time finding information on how to use it for edit/update/delete.
Can anyone point me to information on how to put a ...
10
votes
2answers
2k views
Does ASP.NET MVC RC has a strongly typed RedirectToAction method already?
Since I have decided to let RC go while staying with Beta for now, I have no way of knowing whether there has been some progress in this area. Who has tried it, are there strongly typed ...
9
votes
4answers
3k views
ASP.NET MVC 3, Razor Views, and Portable Areas
I am trying to using portable views with ASP.NET MVC 3 and razor views as that seems like the best way to create an easy plug-in architecture. So I have my class library setup and I have my view ...
9
votes
1answer
613 views
Does MVC Contrib fulfill its promise of increasing productivity in ASP.NET MVC
I am knee deep in starting a new ASP.NET MVC project. Several tutorials have recommended the use of MVC Contrib. I wanted to get the opinion of the Stack Overflow community if it fulfilled its promise ...
7
votes
3answers
197 views
How to deal with more than one value per key in ASP.NET MVC 3?
I have the following problem: one of the system I'm working in most important features is a search page. In this page I have some options, like records per page, starting date, ending date, and the ...
6
votes
2answers
439 views
MVC Contrib VerificationException
I have read this post and I wanted to use ControllerExtensions.RedirectToAction method. But I have System.Security.VerificationException Which says: type argument '[MyController type]' violates the ...
5
votes
2answers
317 views
Why does mvccontrib's AssertViewRendered().ForView(“Edit”) fail due to view name being full cshtml path?
I have the following unit test:
[TestMethod]
public void Add_Returns_Edit_View()
{
// Act
ActionResult result = _controller.Add();
// Verify
...
5
votes
1answer
382 views
anyway to install mvccontrib.testhelper with nuget
I have installed mvccontrib using nuget with the usual install-package mvccontrib, but i notice there is no testhelper there. Is there some other way or flag that i have to use to install it.
Trying ...
5
votes
1answer
531 views
where to find a windsor controller factory for mvc 2 ? There is no mvccontrib.castle.dll anymore o_O
I was using WindsorControllerFactory from mvccontrib.castle lib until now, after i migrated to mvc 2 it doesn't work anymore, I've downloaded the latest mvccontrib release and no factories in there
5
votes
2answers
2k views
how to apply css class to mvccontrib grid
I am using mvccontrib grid in asp.net mvc(C#) application.
How can i apply css class to the grid thats created for the mvccontrib grid Attributes?
I am looking to construct like:
<table ...
4
votes
3answers
240 views
Using HTML.Grid to display child object
I have an ASP.NET MVC application that is using a single view to display the properties and children (with their properties) of a model entity.
My model looks something like this:
public class ...
4
votes
2answers
858 views
MvcContrib FluentHtml With Razor?
I'm wondering does the latest release of MvcContrib work with the Razor view engine? I referenced the MvcContrib assembly and the FluentHtml assembly, then I added the required namespace to the ...
4
votes
1answer
126 views
asp.net MVC: RescueAttribute (mvccontrib) vs HandleErrrorsAttribute?
I recently came across the rescue attribute which is part of the mvccontrib project... At first glance it appeared to allow you to server up different error views depending on controller / actions ...
4
votes
4answers
760 views
Is using something like the MvcContrib Grid a step backwards in code readability? [closed]
I mean, now we have all this movement towards separating your html markup from your code as much as possible using modern template engines (in the old days programmers usually just kept concatenating ...
4
votes
1answer
289 views
MvcContrib Test Helper problem
I am using MVC2 with MvcContrib HelpTester.
I have problem with testing Controllers which are in Areas.
Here is my Test class :
[TestFixture]
public class RouteTests
{
...
4
votes
2answers
986 views
ASP.NET MVC - Returning data as HTML or XML
When requesting http://someserver.com/user/btyndall
I'd like to return HTML
When requesting http://someserver.com/user/btyndall?format=xml
I'd like to return XML representation of my model
I've ...
3
votes
1answer
139 views
Html.Grid can't find a model property that is clearly there
The grid in question is a simple list of locations, based on this collection:
public class Locations : BaseGrid
{
public string zipCode { get; set;}
public string city { get; set; }
...
3
votes
2answers
133 views
MVC 2 - Cannot retieve checkbox values in MVC Contrib grid
I have a checkbox on my MVC Contrib grid;
<%= Html.Grid(Model.TeamMembers).Columns(column =>
{
column.For(model => model.Surname);
...
3
votes
1answer
545 views
ASP.NET MVCContrib Grid with Ajax
Where can I find some sample projects that show jquery ajax integrated with the MVCContrib Grid?
3
votes
2answers
1k views
MVC3 doesn't recognize MvcContrib namespace in Razor View
I'm trying to paginate something with MvcContrib's Html.Pager(), but my razor views can't reference the right namespace.
Controller is ok:
using MvcContrib.Pagination;
...
public ActionResult ...
3
votes
1answer
2k views
Problem with razor view and mvccontrib grid pagination
I have the following partial view code
@model IEnumerable<PDoc.Web.Models.UserDocModel>
@using MvcContrib.UI.Grid;
@using MvcContrib.UI.Pager;
@using MvcContrib.Pagination;
<div ...
3
votes
1answer
237 views
Why Fetch should be the last clause in Linq Nhibernate query
Fetch should be the last clause in Linq based on Mike Hadlow's blog post:
Note that if you want to mix Fetch
with other clauses, Fetch must always
come last.
So, if Fetch is just indicating ...
3
votes
1answer
1k views
MVCContrib Grid - how to add and delete rows with ajax?
I'm wondering what's the best strategy to delete a row in MVCContrib generated grid.
Consider this grid:
Html.Grid(Model.Proc.Documents).Columns(column =>
{
column.For(c => ...
3
votes
1answer
691 views
MvcContrib CheckBoxList
May be some one could explain that behavior:
I am using CheckBoxList from the latest version of MvcContrib
When my page is loading first time - I am simply return my view
return ...
3
votes
2answers
766 views
MVC + Repository Pattern - Still depends on Data Model?
I've started a project for school in which I am using ASP.NET MVC 2 + LINQ2SQL, and a business layer so my UI doesnt interact with the DB directly. My question is this:
In my MVC project, when ...
3
votes
1answer
589 views
Asp.net MVC 2, MvcContrib, and a base controller with redirect actions
I've got a base controller that takes a couple generics, nothing overly fancy.
public class SystemBaseController<TForm, TFormViewModel> : Controller
where TForm : class, IForm
where ...
3
votes
1answer
519 views
Can footers be added to MVCContrib grids?
I'd like for my column header to also be footers using MVCContrib grid. How can I add footers?
<% Html.Grid(Model).Columns(col =>
{
col.For(c => c.sub_id).Named("Id");
col.For(c => ...
3
votes
2answers
1k views
mvccontrib test helper and verifying http post routes and parameters
In my Asp.net MVC app, I have two methods on a controller, one for when the user first arrives on the view and then one when they submit the form on said view.
public ActionResult Foo() {}
...
3
votes
2answers
645 views
Edit links in GridModel (MVCContrib)
http://stackoverflow.com/questions/1458782/mvccontrib-gridmodel-is-it-possible-to-do-actionsyntax-in-a-gridmodel
I've read this article and it's quite useful but I can't apply this. I don't know if in ...
3
votes
1answer
614 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 ...
3
votes
1answer
2k 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 ...
3
votes
2answers
977 views
MVCContrib grid and posting back with model binder
The contents of my MVCContrib grid come from the Model on a strongly typed View. When a post is made, the contents of the grid are not in the model object when it returns to the controller. I can see ...
2
votes
2answers
194 views
MvcContrib.Mvc3-ci 3.0.75.0 breaking change?
Just updated from MvcContrib.Mvc3-ci 3.0.73.0 to 3.0.75, and the previously working plain ViewUserControl threw a runtime exception:
The model item passed into the dictionary is of type ...
2
votes
1answer
498 views
ASP.NET mVC 3.0 Validate MVCContrib CheckboxList
I implement a custom validator to check if there is at least something checked:
public class AtLestOneRequiredAttribute : RequiredAttribute
{
public override bool IsValid(object value)
...
2
votes
2answers
299 views
How to add a css class to MVCContrib grid <th>
I tried:
@Html.Grid(Model.PagedList).Columns(column =>{
column.For(m => m.Name).Attributes(@class => "test");
})
But that just added it to the tag inside the grid.
2
votes
1answer
146 views
MVCContrib Portable Areas Swf Embedded Resource
I'm getting the error "The given key was not present in the dictionary." with a swf as an embedded resource in a MVCContrib portable area. When I remove the file from the assembly entirely I get a ...
2
votes
1answer
89 views
MVC Contrib and MVC Futures: do they complement or negate each other?
Every time I start a new MVC 3 project, I'm not sure whether to ue MVC Contrib or MVC Futures. They've both proved useful in the past and seem to be aiming to achieve the same things in many ways.
...
2
votes
3answers
2k views
ASP.NET MVC 3: DefaultModelBinder with inhertance/polymorphism
First, sorry for the big post (I've tried to do some research first) and for the mix of technologies on the same question (ASP.NET MVC 3, Ninject and MvcContrib).
I'm developing a project with ...
2
votes
2answers
119 views
How to produce XML with attributes rather than nodes, using MvcContrib's XmlResult?
I'm trying to generate an XML output from a type in C#. I'm Using the MvcContrib XmlResult class, which I've included a link to below.
As a simple test to see if I could get it working, I'm using the ...
2
votes
1answer
275 views
MvcContrib TestHelpers broken in MVC3?
I have just upgraded my project to MVC3 using Razor. The project includes MvcContrib and I am using the MvcContrib.TestHelper methods for testing redirects, view rendering, etc. When I run the ...
2
votes
1answer
434 views
MVContrib Portable Areas with Razor
MVCContrib Portable Areas use WebForms engine to extract views embedded as resources from different assemblies. It would be a lot more natural with Razor, which is totally decoupled from the web ...
2
votes
0answers
93 views
Is there a way to load multiple versions of a given portable area or different versions of area dependencies within a ASP.Net WebSite
I'm trying to satisfy a couple of requirements I have while building an ASP.NET MVC Website.
I've managed to follow the numerous portable area tutorials on the net to allow for drag and drop of a DLL ...
2
votes
1answer
238 views
Overriding the default 'No Data' Message in MVCContrib Grid
Is it possible to override the default 'There is no Data available' message in MVCContrib Grid with a custom message?
2
votes
2answers
440 views
Refactoring a form in MVC2
I find myself pasting this code over and over on many views that deal with forms.
Is there a simple approach to refactor the following markup from a view in MVC2?
The only changing part is the route ...
2
votes
1answer
478 views
pro's and cons of MEF vs Portable Areas via MvcContrib for collaborative programming
I've been looking into MEF and Portable areas and the pro's and cons of using these in a collaborative programming environment.
I've found the following article
...
2
votes
0answers
261 views
Compile MvcContrib Portable Area with aspnet_compiler
I have a .net mvc 2 web application. I deployed this application using aspnet_compiler and a nant build file
like
<target name="deploy.advance.application">
<exec ...
2
votes
1answer
700 views
MVCContrib grid - sorting and paging
Every example I've run across demonstrating paging and sorting assume that the controller action that populates the grid does a getAll on the datasource. However in my application I am calling a web ...
2
votes
1answer
1k views
MVCContrib grid - select row
I have a MVCContrib grid that shows selected properties from an Account object. I want the user to select a row and be taken to another page to view the full properties of the object represented by ...