active questions tagged mvccontrib - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T20:30:21Zhttp://stackoverflow.com/feeds/tag/mvccontribhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1891526/mvccontrib-shouldmapto-testhelper-throws-assertionexception-unexpectedly0MvcContrib ShouldMapTo TestHelper throws AssertionException unexpectedlyARM2009-12-11T23:24:20Z2009-12-11T23:24:20Z
<p>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 unfortunately sparse message. I'm using MVC1 and the corresponding MvcContirb.</p>
<pre><code>[Test]
public void ThisShouldNotErrorButItDoes()
{
"~/District/ParticipantInfo/1907/2010".Route().Values.ToList().ForEach(r => Console.WriteLine(r.Key + ": " + r.Value));
Console.WriteLine(((Route)"~/District/ParticipantInfo/1907/2010".Route().Route).Url);
"~/District/ParticipantInfo/1907/2010".ShouldMapTo<DistrictController>(c => c.ParticipantInfo(1907, 2010));
}
</code></pre>
<p>The first two lines show that the exception should not be thrown. I'm mapping the correct controller, action, districtNumber, and surveyYear to match the correct route of {controller}/{action}/{districtNumber}/{surveyYear}.</p>
<p>My routes:</p>
<pre><code> public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Participation",
"{controller}/{action}/{districtNumber}/{surveyYear}",
new { controller = "District", action = "ParticipantInfo" });
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = string.Empty }); // Parameter defaults
}
</code></pre>
<p>The Error I'm getting is MvcContrib.TestHelper.AssertionException : Value for parameter did not match.</p>
<p>I've tracked this down to: public static RouteData ShouldMapTo(this RouteData routeData, Expression> action)
where TController : Controller<br>
Which is inside of RouteTestingExtensions.cs</p>
<p>Does anyone have any clue on this one?</p>
http://stackoverflow.com/questions/1830376/using-spring-net-to-inject-dependencies-into-asp-net-mvc-actionfilters1Using Spring.Net to inject dependencies into ASP.NET MVC ActionFiltersJack2009-12-02T02:51:35Z2009-12-10T15:02:45Z
<p>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 it?</p>
<p>Say you have an ActionFilter that looks like so:
public class CustomAttribute : ActionFilterAttribute, ICustomAttribute
{
private IAwesomeService awesomeService;</p>
<pre><code>public CustomAttribute(){}
public CustomAttribute(IAwesomeService awesomeService)
{
this.awesomeService= awesomeService;
}
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
//Do some work
}
</code></pre>
<p>}</p>
<p>With a Spring.Net configuration section that looks like so:
</p>
<p>And you use the Attribute like so:
[Custom]
public FooController : Controller
{
//Do some work
}</p>
http://stackoverflow.com/questions/1856916/hierarchical-grid-with-mvccontrib0Hierarchical Grid with MVCContribjkohlhepp2009-12-06T22:48:44Z2009-12-07T01:47:50Z
<p>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 <em>exactly</em> what I'm looking for. However, from what I can tell, jqGrid is not free, and my client is not interested in purchasing a license for it.</p>
<p>To get an idea of what I'm after, the "Tree Grid" demo of jqGrid can be found on this page under "New in version 3.3":<br>
<a href="http://www.trirand.com/jqgrid/jqgrid.html" rel="nofollow">http://www.trirand.com/jqgrid/jqgrid.html</a></p>
<p>What are my other options for creating a hierarchical grid? The libraries I'm using so far are ASP.NET MVC, MVCContrib, and jQuery, but I'm open to bringing something else in. I'm sure I could also roll my own if I have to. If I do have to roll my own, what approach should I take?</p>
<p>Thanks,</p>
<p>~ Justin</p>
http://stackoverflow.com/questions/1772443/what-happened-to-mvccontrib-subcontrollers1What happened to MVCContrib Subcontrollers Adam Tolley2009-11-20T18:36:37Z2009-11-20T18:51:03Z
<p>I see several articles on the interwebs about MVCContrib's subcontroller feature, but I don't see anything on the codeplex site about it. </p>
<p>Has this feature been supplanted by something in MVC2?</p>
<p>Whats the best approach for rendering controls with their own data pipeline (submit to their own controller, display data from their own controller) in MVC?</p>
http://stackoverflow.com/questions/1766270/mvc-contrib-input-builders-and-spark-view-engine0MVC Contrib Input Builders and Spark View EngineDaniel Liuzzi2009-11-19T20:26:15Z2009-11-19T23:36:20Z
<p>In Eric Hexter's <a href="http://www.lostechies.com/blogs/hex/archive/2009/06/09/opinionated-input-builders-for-asp-net-mvc-using-partials-part-i.aspx" rel="nofollow">Input Builders</a>, different templates use different strongly-typed models; for example <code>String</code> uses <code>PropertyViewModel<object></code>, <code>DateTime</code> uses <code>PropertyViewModel<DateTime></code>, <code>Form</code> uses <code>PropertyViewModel[]</code>, and so forth. <a href="http://sparkviewengine.com/" rel="nofollow">Spark View Engine</a> doesn't seem to allow this, because all elements that compose the presentation (masters, views, partials, etc.) are compiled into a single class.</p>
<p>If I try to setup a view involving more than one template, I get the following exception:</p>
<p><code>Only one viewdata model can be declared. PropertyViewModel<DateTime> != PropertyViewModel<object></code></p>
<p>If leave just one viewdata declaration, I get another exception about the passed model item mismatching the required one.</p>
<p>It seems like I will have to give up either the Input Builders or Spark, which is sad because I really love both. So I thought I'd ask here to see if anybody has already figured this out.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1750242/how-can-i-make-input-builders-mvc-contrib-work-with-spark-view-engine1How can I make Input Builders (MVC Contrib) work with Spark View Engine?Daniel Liuzzi2009-11-17T16:55:29Z2009-11-18T18:23:14Z
<p>Today I spent a good three hours trying to convert the project MvcContrib.Samples.InputBuilders, included in <a href="http://github.com/mvccontrib/MvcContrib" rel="nofollow">MVC Contrib</a> to make it work with <a href="http://www.sparkviewengine.com/" rel="nofollow">Spark View Engine</a>, but so far was unable to do so.</p>
<p>Does anybody have a clue why these two just won't get along?</p>
<p><strong>Changes I've made</strong></p>
<p>InputForm.spark:</p>
<pre><code><viewdata model="SampleInput" />
!{Html.InputForm()}
</code></pre>
<p>Global.asax.cs:</p>
<pre><code>...
protected void Application_Start() {
RegisterRoutes(RouteTable.Routes);
InputBuilder.BootStrap();
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new SparkViewFactory());
}
</code></pre>
<p>Web.config:</p>
<pre><code>...
<spark>
<compilation debug="true"/>
<pages automaticEncoding="true">
<namespaces>
<add namespace="System"/>
<add namespace="System.Collections.Generic"/>
<add namespace="System.Linq"/>
<add namespace="System.Web.Mvc"/>
<add namespace="System.Web.Mvc.Ajax"/>
<add namespace="System.Web.Mvc.Html"/>
<add namespace="System.Web.Routing"/>
<add namespace="MvcContrib.UI.InputBuilder"/>
<add namespace="MvcContrib.UI.InputBuilder.Views"/>
<add namespace="Web.Models"/>
</namespaces>
</pages>
</spark>
</code></pre>
<p><em>(I copied the last three namespaces from the sample project.)</em></p>
<p><strong>Errors I'm getting</strong></p>
<p>Depending on the order in which I setup Spark/InputBuilder in Global.asax.cs, I get two different exceptions.</p>
<p>If I first setup InputBuilder, then Spark (code shown above):</p>
<blockquote>
<p>error CS1061:
'System.Web.Mvc.HtmlHelper' does not
contain a definition for 'InputForm'
and no extension method 'InputForm'
accepting a first argument of type
'System.Web.Mvc.HtmlHelper' could be
found (are you missing a using
directive or an assembly reference?)</p>
</blockquote>
<p>If I first setup Spark, then InputBuilder:</p>
<blockquote>
<p>The view 'InputForm' or its master
could not be found. The following
locations were searched:</p>
<p>~/Views/Home/InputForm.aspx</p>
<p>~/Views/Shared/InputForm.aspx</p>
<p>~/Views/InputBuilders/InputForm.aspx</p>
<p>~/Views/Home/InputForm.ascx</p>
<p>~/Views/Shared/InputForm.ascx</p>
</blockquote>
http://stackoverflow.com/questions/1752146/mvccontrib-html-grid-how-can-i-attach-a-row-based-id-to-a-td-tag1MVCContrib, Html.Grid: How can I attach a row-based id to a td tag?Jim G.2009-11-17T21:58:25Z2009-11-18T16:51:10Z
<p>Here's my current view code:</p>
<pre><code><% Html.Grid((List<ColumnDefinition>)ViewData["Parameters"])
.Columns(column =>
{
column.For(c => c.ID);
column.For(c => c.Name);
}).Render();
%>
</code></pre>
<p>I'd like to attach an HTML "id" attribute to each "name" td tag as such:</p>
<pre><code><table class="grid">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr class="gridrow">
<td>1</td>
<td id="parameter_1">Address</td>
</tr>
<tr class="gridrow_alternate">
<td>2</td>
<td id="parameter_2">Phone Number</td>
</tr>
</tbody>
</table>
</code></pre>
<p>My question:</p>
<blockquote>
<p>How do I do this?</p>
</blockquote>
<p>I considered the 'Attributes' extension method, but I wasn't sure how I could make it work.</p>
http://stackoverflow.com/questions/1756040/do-input-builder-attributes-in-mvc-contrib-support-localization0Do Input Builder attributes in MVC Contrib support localization?Daniel Liuzzi2009-11-18T13:40:32Z2009-11-18T16:42:13Z
<p>With Data Annotations for example, besides decorating members like this:</p>
<pre><code>[Required(
ErrorMessage = "You must enter your first name."
)]
public int FirstName { get; set; }
</code></pre>
<p>I can also do it like this to accommodate multiple cultures:</p>
<pre><code>[Required(
ErrorMessageResourceType = typeof(Resources.Customer),
ErrorMessageResourceName = "NameRequired"
)]
public int FirstName { get; set; }
</code></pre>
<p>Does anybody know if the input builders in MVC Contrib support something like this for setting labels?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1740598/cannot-use-fluent-html-lambda-expressions-in-spark-view0Cannot use fluent html lambda expressions in Spark viewmidas062009-11-16T07:21:44Z2009-11-16T10:15:39Z
<p>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 fine.
However I get the below exception when i attempt to use this.TextBox(m=>m.MyProperty).
Any idea what can be causing this?</p>
<p>Exception:</p>
<pre><code>Dynamic view compilation failed.
c:\Users\Midas\Documents\Visual Studio 2008 \Projects\ChurchMVC\ChurchMVC\Views\Poll\New.spark(6,31): error CS1660: Cannot convert lambda expression to type 'string' because it is not a delegate type
c:\Users\Midas\Documents\Visual Studio 2008 \Projects\ChurchMVC\ChurchMVC\Views\Poll\New.spark(7,28): error CS1660: Cannot convert lambda expression to type 'string' because it is not a delegate type
1 using MvcContrib.FluentHtml;
2 using System;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Web.Mvc;
6 using System.Web.Mvc.Html;
7 using Microsoft.Web.Mvc;
8 using MvcContrib.FluentHtml.Elements;
9
10 namespace ChurchMVC.Controllers
11 {
12
13 [global::Spark.SparkViewAttribute(
14 TargetNamespace="ChurchMVC.Controllers",
15 Templates = new string[] {
16 "Poll\\New.spark",
17 "Layouts\\Application.spark",
18 "Layouts\\TwoColumn.spark",
19 "Layouts\\Base.spark"
20 })]
21 public class View6dda34d85cf14f8d8946e77056f25819 : Spark.Web.Mvc.SparkView<ChurchMVC.Models.ViewModels.PollViewModel>
22 {
23
24 public override System.Guid GeneratedViewId
25 { get { return new System.Guid("6dda34d85cf14f8d8946e77056f25819"); } }
26
27 string BuildArticleBreadcumb(ChurchDAL.Section section)
28 #line 10 "C:\Users\Midas\Documents\Visual Studio 2008\Projects\ChurchMVC\ChurchMVC\Views\Shared\_global.spark"
29 {
30 #line hidden
31 using(OutputScope(new System.IO.StringWriter()))
32 {
33 #line default
34 #line 11 "C:\Users\Midas\Documents\Visual Studio 2008 \Projects\ChurchMVC\ChurchMVC\Views\Shared\_global.spark"
35 if (section == null)
36 #line default
</code></pre>
http://stackoverflow.com/questions/1721933/input-builder-for-a-dropdownlist-with-data-from-db-in-mvc-contrib0Input builder for a DropDownList with data from DB in mvc contribOmu2009-11-12T12:42:27Z2009-11-12T13:31:54Z
<p>I have something like this </p>
<pre><code>public class Person
{
public Country {get; set;}
}
public class PersonInput
{
public ImNotSureWhatShouldIUseHere Country {get; set;}
}
</code></pre>
<p>there is a input builder for Enums in mvc contrib but it's not good for me because i retrieve the data from the DB and i save the Id of the selected element not the value </p>
http://stackoverflow.com/questions/1681325/asp-net-mvc-how-to-persist-model-over-various-views0ASP.net MVC - How to persist model over various views.Adam Tolley2009-11-05T15:34:40Z2009-11-11T09:30:45Z
<p>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 pre-creation BUT the list of available tasks is dependent on some values sitting in the create form. </p>
<p>My abstract solution is this:</p>
<ul>
<li>I have a "Create" view and an "Add Tasks" View - both strongly typed to a composite viewModel defined in the controller </li>
<li>My Create method checks which button was used to call it - if the
button was "Add Tasks" it then renders the AddTasks view, passing the model in from the create view, again all in the same controller.</li>
<li>The AddTasks View posts to the Create view with one of two buttons, one loads the view and the other causes an actually DB save.</li>
</ul>
<p>My Problem is this:</p>
<ul>
<li>The different views use different properties of the same model, but in passing this model between them, the data is reset (in any case reload or save). </li>
<li>I am guessing this is happening from auto binding of data - though I thought fields not present on the form would not overwrite existing model data passed down.</li>
<li>There is hardly any code in the controller manipulating the model at present - It is only passed from view to view in these cases. </li>
</ul>
<p>This is the controller code:</p>
<pre><code> // POST: /Project/Create/<viewModel>
[Authorize, AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Exclude = "Id,id")] ProjectViewModel model)
{
if (model.SubmitValue == "Create")
{
try
{
model.Project.Id = Guid.NewGuid();
model.Save(this.User.Identity.Name);
return this.RedirectToAction("Details", new {id = model.Project.Id});
}
catch (Exception e)
{
this.ModelState.AddModelError(e.ToString(), e.ToString());
}
return View(model);
}
if(model.SubmitValue == "AddTasks")
{
return this.View("AddTasks",model);
}
return this.View(model);
}
//POST: /Project/AddTasks/ + model
[Authorize, AcceptVerbs(HttpVerbs.Post)]
public ActionResult AddTasks([Bind(Include = SelectedCarrierTasks")]ProjectViewModel model)
{
return View(model);
}
</code></pre>
<p><strong>The Question is: How do I maintain the state of the model across these views until it finally save it?</strong> </p>
<p>I would prefer to avoid any hackish (TempData) or JS dependant solutions, but I am not closed to these if they are really the best solution.</p>
<p>Thanks,
Adam Tolley </p>
http://stackoverflow.com/questions/1617795/dry-in-the-mvc-view0DRY in the MVC Vieworjan2009-10-24T11:57:30Z2009-11-10T17:16:41Z
<p>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 the generated markup in a single class like and don't break the SRP:</p>
<pre><code><form:textfield id="firstName" runat="server" required="true" label="First Name" />
</code></pre>
<p>I you're your going to generate the markup by hand it might look like this:</p>
<pre><code><label for="firstName" id="lbl_firstName">Name <span class="required">*</span></label>
<input id="firstName" name="firstName" type="text" value="" />
</code></pre>
<p>The problem is when would like to change something for example add a wrapping div or move the span. In worst case you have to edit thousands of views.</p>
<p>That's why I really like the MVC Contrib FluentHtml.</p>
<pre><code><%= this.TextBox(x => x.Message.PostedBy).Class("required").Label("Name") %>
</code></pre>
<p>My question is what do you think is the best way to add a wrapping div for the code line above? I think hand writing is not an option because of the arguments above? Perhaps extending the TextBox : MvcContrib.FluentHtml.Elements.TextInput?</p>
http://stackoverflow.com/questions/1674013/using-mvc-contrib-fluenthtml-in-views0Using MVC Contrib FluentHtml in ViewsMattio2009-11-04T14:17:07Z2009-11-10T16:45:26Z
<p>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.</p>
<p>Will I lose any functionality provided by System.Web.Mvc.ViewPage if I do that? </p>
http://stackoverflow.com/questions/1682375/how-to-set-foreign-key-object-using-entity-framework-and-fluenthtml0How to set Foreign Key object using Entity Framework and FluentHtmljcm2009-11-05T17:53:27Z2009-11-10T16:42:54Z
<p>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 Bar in my view form. My models contains a collection of all Bars via Model.Bars. In my view I'm simply using <code><%= this.Select(m => m.Foo.Bar).Options(Model.Bars) %></code> but the model state claims it is not valid. The dropdown is properly filled with Bar ids and it all looks valid. Is there some special magic I need for setting EF entity reference properties in my forms?</p>
<p>I just moved over from Linq2SQL where I was simply using Select(m => m.Foo.BarId) as you could have the key reference mapped as well as the object. However, Entity Framework does not allow this.</p>
http://stackoverflow.com/questions/1562804/sorting-with-mvccontrib0Sorting with MVCContribmikeg12009-10-13T20:42:59Z2009-10-13T20:51:57Z
<p>Does anyone know how to sort the MVCContrib grid when using a complex object.</p>
<p>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 property an Address class which is a property of Person.</p>
<p>Person.Address.Country</p>
<pre><code> <%Html.Grid(Model).Columns(column =>
{
column.For(x => x.Id);
column.For(x => x.FirstName);
column.For(x => x.LastName).Sortable(false);
column.For(x => x.Address.Country).Sortable(false);
column.For(x => x.Age).Sortable(true);
}).Render(); %>
</code></pre>
<p>Exception: <br>
<b>Property 'Country' is not defined for type '{Namespace}.Person'</b><br>
var sourceProp = Expression.Property(sourceParam, this.SortBy);
\MVCContrib\UI\Grid\Sortable\ComparableSortList.cs Line: 41 </p>
<p>Any suggestions would be helpful. </p>
<p>Thank you,</p>
<p>MG1</p>
http://stackoverflow.com/questions/1203312/using-request-files-count-with-testcontrollerbuilder-from-mvccontrib0Using Request.Files.Count with TestControllerBuilder from MvcContrib?Mike Henry2009-07-29T21:59:57Z2009-10-07T19:23:11Z
<p>I have a controller action in ASP.NET MVC that handles uploaded files. However, it seems there is no way to call <code>Request.Files.Count</code> while using MvcContrib's <code>TestControllerBuilder</code>.</p>
<p>I know I can work around this by abstracting <code>Request.Files</code>. My questions are:</p>
<ol>
<li>Is it indeed the case that there is no direct way to call <code>Request.Files.Count</code> when using the <code>TestControllerBuilder</code>? Or am I doing something wrong?</li>
<li>Is there a way to stub the call to <code>Request.Files.Count</code> while using <code>TestControllerBuilder</code> using Rhino Mocks?</li>
<li>Do you think I should submit a request or patch for handling <code>Request.Files.Count</code> to MvcContrib?</li>
</ol>
<h2>Example code:</h2>
<p>I want to make sure that there is at least one file in the <code>Request.Files</code> collection so I have the following conditional in my action:</p>
<pre><code>public class MyController : Controller {
public ActionResult Upload() {
if (Request.Files == null || Request.Files.Count == 0)
ViewData.ModelState.AddModelError("File", "Please upload a file");
// do stuff
return View();
}
}
</code></pre>
<p>I am using the <code>TestControllerBuilder</code> from MvcContrib to create the test double for my controller tests. However, the call to <code>Request.Files.Count</code> always seems to throw a an exception. For example running the following NUnit test throws a <code>NotImplementedException</code> during the call to <code>controller.Upload()</code> at the call to <code>Request.Files.Count</code>:</p>
<pre><code>[Test]
public void Upload_should_return_default_view_given_one_file() {
MyController controller = new MyController();
TestControllerBuilder controllerBuilder = new TestControllerBuilder();
controllerBuilder.InitializeController(controller);
controllerBuilder.Files["file"] =
MockRepository.GenerateStub<HttpPostedFileBase>();
var result = controller.Upload() as ViewResult;
Assert.That(result.ViewData.ModelState.IsValid, Is.True);
result.AssertViewRendered().ForView(string.Empty);
}
</code></pre>
<p>I've also attempted stubbing the call to <code>Request.Files.Count</code> to no avail (I'm using Rhino Mocks). None of the below work (even if I change <code>controller</code> and/or <code>controllerBuilder</code> to a stub):</p>
<pre><code>controllerBuilder.Stub(cb => cb.HttpContext.Request.Files.Count).Return(1);
controller.Stub(c => c.Request.Files.Count).Return(1);
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1488890/asp-net-mvc-partial-views-input-name-prefixes3ASP.NET MVC partial views: input name prefixesqueen32009-09-28T19:24:24Z2009-09-29T07:59:32Z
<p>Suppose I have ViewModel like</p>
<pre><code>public class AnotherViewModel
{
public string Name { get; set; }
}
public class MyViewModel
{
public string Name { get; set; }
public AnotherViewModel Child { get; set; }
public AnotherViewModel Child2 { get; set; }
}
</code></pre>
<p>In the view I can render a partial with </p>
<pre><code><% Html.RenderPartial("AnotherViewModelControl", Model.Child) %>
</code></pre>
<p>In the partial I'll do</p>
<pre><code><%= Html.TextBox("Name", Model.Name) %>
or
<%= Html.TextBoxFor(x => x.Name) %>
</code></pre>
<p>However, the problem is that both will render name="Name" while I need to have name="Child.Name" in order for model binder to work properly. Or, name="Child2.Name" when I render the second property using the same partial view.</p>
<p>How do I make my partial view automatically recognize the required prefix? I can pass it as a parameter but this is too inconvenient. This is even worse when I want for example to render it recursively. Is there a way to render partial views with a prefix, or, even better, with automatic reconition of the calling lambda expression so that </p>
<pre><code><% Html.RenderPartial("AnotherViewModelControl", Model.Child) %>
</code></pre>
<p>will automatically add correct "Child." prefix to the generated name/id strings?</p>
<p>I can accept any solutino, including 3-rd party view engines and libraries - I actually use Spark View Engine (I "solve" the problem using its macros) and MvcContrib, but did not find a solution there. XForms, InputBuilder, MVC v2 - any tool/insight that provide this functionality will be great.</p>
<p>Currently I think about coding this myself but it seems like a waste of time, I can't believe this trivial stuff is not implemented already.</p>
<p>A lot of manual solutions may exists, and all of them are welcome. For example, I can force my partials to be based off IPartialViewModel<T> { public string Prefix; T Model; }. But I'd rather prefer some existing/approved solution.</p>
<p>UPDATE: there's a similar question with no answer <a href="http://stackoverflow.com/questions/955371/partial-view-with-parametrized-prefix-for-controls-names">here</a>.</p>
http://stackoverflow.com/questions/843304/mvccontrib-grid-default-sort-order1mvccontrib grid default sort orderDanny2009-05-09T13:19:21Z2009-09-24T23:47:45Z
<p>Anyone know how to set the default sort order for the mvccontrib grid?</p>
http://stackoverflow.com/questions/1138545/create-select-list-with-first-option-text-with-mvccontrib2Create select list with first option text with mvccontrib?aherrick2009-07-16T15:48:47Z2009-09-24T23:41:15Z
<p>Trying to create a select list with a first option text set to an empty string. As a data source I have a List of a GenericKeyValue class with properties "Key" & "Value". My current code is as follows. </p>
<pre><code> <%= this.Select(x => x.State).Options(ViewData[Constants.StateCountry.STATES] as IList<GenericKeyValue>, "Value", "Key").Selected(Model.State) %>
</code></pre>
<p>This gets fills the select list with states, however I am unsure at this point of an elegant way to get a first option text of empty string.</p>
http://stackoverflow.com/questions/1458782/mvccontrib-gridmodel-is-it-possible-to-do-actionsyntax-in-a-gridmodel0MvcContrib GridModel : Is it possible to do ActionSyntax in a GridModelLoSTxMiND2009-09-22T08:26:32Z2009-09-22T09:30:09Z
<p>I have a code in my aspx file which uses ActionSyntax, and i want to use a GridModel instead, but i don't know how to do that.</p>
<p>Here is a sample of my aspx file :</p>
<pre><code><% Html.Grid(ViewData.Model).Columns(column => {
column.For(x => x.Id).Named("N° de contrat");
column.For(x => x.SubscriptionDate).Format("{0:d}").Named("Date de souscription");
column.For(x => x.SubscriptionOrigin).Named("Source");
column.For(x => x.Agent).Named("Agence(*)");
column.For(x => x.Agent).Named("Agent");
column.For(x => x.Subscriber).Named("Souscripteur");
column.For(x => x.ProductTitle).Named("Produit");
column.For(x => x.NbBeneficiaries).Named("Nombre de bénéficiaires");
column.For(x => x.Price).Named("Montant du contrat");
column.For("PDF").Named("").Action(p => {%> <td><img src="../Content/Images/pdf.gif" /></td> <%});
column.For("Mail").Named("").Action(p => {%> <td><img src="../Content/Images/mail.gif" /></td> <%});
column.For("Attestation").Named("").Action(p => {%> <td><img src="../Content/Images/attestation.gif" /></td> <%});
column.For("Poubelle").Named("").Action(p => {%> <td><img src="../Content/Images/poubelle.png" /></td> <%});
}).Attributes(id => "subList").Render(); %>
</code></pre>
<p>And i'd like to do :</p>
<pre><code><%= Html.Grid(ViewData.Model).WithModel(new MyGridModel()) %>
</code></pre>
<p>But i don't know how to render this ActionSyntax part in a .cs file :</p>
<pre><code> column.For("PDF").Named("").Action(p => {%> <td><img src="../Content/Images/pdf.gif" /></td> <%});
column.For("Mail").Named("").Action(p => {%> <td><img src="../Content/Images/mail.gif" /></td> <%});
column.For("Attestation").Named("").Action(p => {%> <td><img src="../Content/Images/attestation.gif" /></td> <%});
column.For("Poubelle").Named("").Action(p => {%> <td><img src="../Content/Images/poubelle.png" /></td> <%});
</code></pre>
<p>Someone have any idea ?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1455343/how-to-add-a-custom-column-to-a-mvccontrib-grid1How to add a custom column to a MvcContrib Grid ?LoSTxMiND2009-09-21T16:10:51Z2009-09-21T16:31:17Z
<p>I don't find a method to add a custom column in a MvcContrib Grid. With the old version you could do :</p>
<pre><code>column.For("Edit").Do(p => { %>
<td>
<a href="/People/Edit/<%= p.Id %>">Edit</a>
</td>
%>});
</code></pre>
<p>But with the latest version, the Do() method disappears... So now which method use ?</p>
http://stackoverflow.com/questions/1439764/does-mvc-contrib-fulfill-its-promise-of-increasing-productivity-in-asp-net-mvc5Does MVC Contrib fulfill its promise of increasing productivity in ASP.NET MVCahsteele2009-09-17T16:00:41Z2009-09-17T16:40:30Z
<p>I am knee deep in starting a new ASP.NET MVC project. Several tutorials have recommended the use of <a href="http://mvccontrib.codeplex.com/" rel="nofollow">MVC Contrib</a>. I wanted to get the opinion of the Stack Overflow community if it fulfilled its promise of increasing productivity with ASP.NET MVC. Basically are the benefits of MVC Contrib worth adding another <a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html" rel="nofollow">leaky abstraction</a> to my application?</p>
http://stackoverflow.com/questions/1401771/how-to-do-pagination-and-filtering-in-mvc-applications1How to do pagination and filtering in MVC applicationsbogdanbrudiu2009-09-09T20:01:02Z2009-09-10T15:37:01Z
<p>I am having the same problem as this <a href="http://stackoverflow.com/questions/1209709/how-to-do-pagination-and-filtering-in-mvc-applications">post</a> but the <a href="http://stackoverflow.com/questions/1209709/how-to-do-pagination-and-filtering-in-mvc-applications/1211064#1211064">answer</a> does not work....
No overload for method 'Pager' takes '4' arguments
Am I using old MVCContrib or the answer is deprecated?</p>
<p>my code looks like this:
in controller</p>
<pre><code> public ActionResult Index(int? clubid,int? page)
{
List<aspnet_Users> memberList = new List<aspnet_Users>();
IEnumerable enumerable;
if (!clubid.HasValue)
{
enumerable = aspnet_Users.Find(User.Identity.Name).Club != null ? aspnet_Users.FindAllByClubId(aspnet_Users.Find(User.Identity.Name).Club.Id) : aspnet_Users.FindAll();
}
else
{
if (clubid == 0)
{
enumerable = aspnet_Users.FindAll();
}
else
{
enumerable = aspnet_Users.FindAllByClubId(clubid.Value);
}
}
ViewData["clubid"] = clubid;
foreach (aspnet_Users member in enumerable)
{
memberList.Add(member);
}
return View(memberList.AsPagination(page ?? 1, 10));
}
</code></pre>
<p>in view</p>
<pre><code> <h2>Index</h2>
<% using (Html.BeginForm()) {
ArrayList clubs=new ArrayList();
clubs.Add(new Club(0, "Toate"));
clubs.AddRange(Club.FindAll());
%>
<%= Html.DropDownList("ClubId", new SelectList(clubs, "Id", "Name", (Model == null ? 0 : aspnet_Users.Find(Page.User.Identity.Name).Club != null ? aspnet_Users.Find(Page.User.Identity.Name).Club.Id : 0)))%>
<input type="submit" value="Filtreaza" />
<% } %>
<table>
<tr>
<th>Action</th>
<th>
UserName
</th>
<th>
Club
</th>
.....
<%=Html.Encode(item.Male?"Male":"Female")%>
</td>
<td>
<%=Html.Encode(item.BirthDay.HasValue?item.BirthDay.Value.ToString(ConfigurationManager.AppSettings["DateFormat"], CultureInfo.InvariantCulture):"")%>
</td>
</tr>
<% }%>
</table> <%= Html.Pager(Model)%>
</code></pre>
<p>if I filter the result changing the clubid with the dropdown the selected value is not passed to the next pages...</p>
<p>the next page link is Members/Index?page=2 and I want Members/Index?clubid=1&page=2</p>
<p>I have tried with
<%= Html.Pager(ViewData.Model.PageSize, ViewData.Model.PageNumber, ViewData.Model.TotalItemCount, new { categoryname = ViewData["clubid"] } )%>
but i get compile errors</p>
<blockquote>
<p>No overload for method 'Pager' takes
'4' arguments</p>
</blockquote>
<p>I have checked and I have the latest release og mvccontrib (1.0.0.916)</p>
http://stackoverflow.com/questions/1331956/asp-net-mvc-html-actionlinktexpression1ASP.NET MVC - Html.ActionLink<T>(expression)blu2009-08-26T01:46:40Z2009-08-26T02:23:52Z
<p>Is something like <code>Url.Action<TController>(...)</code> or <code>Html.ActionLink<TController>(...)</code> in MvcContrib?</p>
<p>I see the FluentHtml stuff for forms, but I don't see the same concept applied to urls. </p>
<p><a href="http://mvccontrib.codeplex.com/WorkItem/View.aspx?WorkItemId=4954" rel="nofollow">This post</a> on CodePlex said it was added, but I don't see it in the source anywhere. Any help would be great.</p>
<p>Edit:</p>
<p>Also, I have read <a href="http://stackoverflow.com/questions/668319/using-linkbuilder-buildurlfromexpression">this</a>, but would like to know specifically about MvcContrib.</p>
http://stackoverflow.com/questions/864908/using-mvccontribs-windsorcontrollerfactory-with-new-windsor-castle-2-00Using MVCContrib's WindsorControllerFactory with new Windsor Castle 2.0Igor Brejc2009-05-14T18:22:27Z2009-08-24T18:00:04Z
<p>I'm trying to use <code>WindsorControllerFactory</code> (the latest 1.0.0.916 version) together with the new Windsor Castle 2.0 (again, the latest version). But I'm getting the </p>
<blockquote>
<p>Could not load file or assembly
'Castle.Windsor, Version=1.0.3.0...</p>
</blockquote>
<p>error when starting the Web application. Anyway, during writing of this question I managed to persuade the Web app to bind to new Castle's dlls by adding this block to the Web.config file:</p>
<pre><code> <runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Castle.Windsor" culture="neutral" publicKeyToken="407dd0808d44fbdc"/>
<bindingRedirect oldVersion="1.0.3.0" newVersion="2.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Castle.Core" culture="neutral" publicKeyToken="407dd0808d44fbdc"/>
<bindingRedirect oldVersion="1.0.3.0" newVersion="1.1.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Castle.MicroKernel" culture="neutral" publicKeyToken="407dd0808d44fbdc"/>
<bindingRedirect oldVersion="1.0.3.0" newVersion="2.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</code></pre>
<p>So I guess I answered my own question, but I wanted to share this with anybody having the same problem. Or is there a better way (apart from compiling the MVCContrib sources myself)?</p>
http://stackoverflow.com/questions/827395/use-mvccontrib-grid-for-editing5Use MVCContrib grid for editingjlembke2009-05-05T23:32:09Z2009-08-19T22:43:39Z
<p>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.</p>
<p>Can anyone point me to information on how to put a row into edit mode, or if there isn't such a thing for that grid, discuss a best practice for editing list data in MVC.</p>
http://stackoverflow.com/questions/1278679/asp-net-mvc-returning-data-as-html-or-xml3ASP.NET MVC - Returning data as HTML or XMLtyndall2009-08-14T15:57:06Z2009-08-14T16:56:12Z
<p>When requesting <a href="http://someserver.com/user/btyndall" rel="nofollow">http://someserver.com/user/btyndall</a>
I'd like to return HTML
When requesting <a href="http://someserver.com/user/btyndall?format=xml" rel="nofollow">http://someserver.com/user/btyndall?format=xml</a>
I'd like to return XML representation of my model</p>
<p>I've downloaded MvcContrib. (I can't believe XmlResult is not a part of the core framework)</p>
<p>What is the proper way to handle the request in the controller. With JSON you have a JsonResult and Json(). I see a XmlResult but not an Xml() method</p>
<p>I could use a little guidance. What I have so far (which is nada):</p>
<pre><code>public ActionResult Details(int id)
{
return View();
}
</code></pre>
<p><strong>UPDATE</strong>:<br />
see all comments</p>
http://stackoverflow.com/questions/1175145/mvccontrib-grid-and-posting-back-with-model-binder3MVCContrib grid and posting back with model binderjlembke2009-07-23T23:57:07Z2009-07-29T22:36:29Z
<p>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 that this is because the grid renders as just a table with text in cells. Is there something I can do so that when the post occurs, the list data I sent down to the grid comes back in the post?</p>
http://stackoverflow.com/questions/1160841/test-asp-net-mvc-routes-using-mvc-contrib1Test ASP.NET MVC routes using MVC ContribDennis Palmer2009-07-21T18:22:04Z2009-07-21T20:47:06Z
<p>I'm trying to set up Route mapping tests using <a href="http://mvccontrib.codeplex.com/" rel="nofollow">MVC Contrib</a> as described in <a href="http://ubiquitous-tech.blogspot.com/2009/07/test-aspnet-mvc-routes-using-mvc.html" rel="nofollow">Test ASP.NET MVC routes using MVC Contrib</a> </p>
<p>The tests compile and execute, but they always fail with the message "The URL did not match any route."</p>
<p>I set up another test to try to get an idea of what the problem is:</p>
<pre><code> Public Sub TestIndexRoute()
Dim routes = New RouteCollection
myMvcApp.MvcApplication.RegisterRoutes(routes)
Assert.That(routes.Count > 0)
Assert.NotNull(routes("Default"), "Default route not found.")
Dim routeData = RouteTestingExtensions.Route("~/Author")
Assert.NotNull(routeData, "routeData is Nothing.")
Assert.That(routeData.Values("controller") = "Author")
End Sub
</code></pre>
<p>That test fails on <code>Assert.NotNull(routeData, "routeData is Nothing.")</code>, so I know that there must be some problem with the MVCContrib code that is trying to access my app's RouteCollection.</p>
<p>From the blog post:</p>
<blockquote>
<p>It also assumes you set your routes in the ASP.NET MVC RouteCollection object.</p>
</blockquote>
<p>How do I confirm that I'm doing that? I'm using routes.MapRoute within MvcApplication.RegisterRoutes method in the Global.asax code behind. Is there something else to do to set this up properly?</p>
<p><strong>Edit:</strong> I should probably mention that I'm new to unit testing. I've been putting off learning it for too long and this seemed like as good a place to start as any.</p>
http://stackoverflow.com/questions/1127922/validation-message-not-showing-after-redirect-using-modelstatetotempdata-attribu1Validation Message not showing after Redirect (Using ModelStateToTempData attribute)Dan2009-07-14T20:45:00Z2009-07-14T21:20:01Z
<p>I have a problem with validation messages not showing after a redirect, even when Im using MVCConrib's <a href="http://mvccontrib.googlecode.com/svn/trunk/src/MVCContrib/Filters/ModelStateToTempDataAttribute.cs" rel="nofollow">ModelStateToTempData</a>. Am I overlooking something fundamental?</p>
<pre><code>[ModelStateToTempData]
public class AccountController : BaseController
{
public ActionResult LogOn(string email, string password, string returnUrl)
{
if (!ValidateLogOn(email, password))
{
return RedirectToAction("Index", "AnotherController");
}
//other stuff
}
private bool ValidateLogOn(string email, string password)
{
if (!_userTask.ValidateUser(email, password))
{
ModelState.AddModelError("message", "The email or password provided is incorrect.");
}
return ModelState.IsValid;
}
}
</code></pre>
<p>View:</p>
<pre><code> <li>
<label for="email">E-mail</label>
<%= Html.TextBox("email")%>
<%= Html.ValidationMessage("message") %>
</li>
</code></pre>