Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

62
votes
2answers
10k views

ASP.NET MVC 3 - Partial vs Display Template vs Editor Template

So, the title should speak for itself. To create re-usable components in ASP.NET MVC, we have 3 options (could be others i haven't mentioned): Partial View: @Html.Partial(Model.Foo, "SomePartial") ...
27
votes
4answers
8k views

ASP.NET MVC - Pass Additional ViewData to a Strongly-Typed Partial View

I have a strongly-typed Partial View that takes a ProductImage and when it is rendered I would also like to provide it with some additional ViewData which I create dynamically in the containing page. ...
3
votes
2answers
378 views

How can i load Partial view inside the view

I am very confuse with this partial view... i want to load a partial view inside my main view ... here is the simple exmaple... i am loading Index.cshtml of the Homecontroller Index action as a ...
3
votes
2answers
376 views

ASP.Net MVC reusable form as RenderAction or RenderPartial

I'm looking for a best practice for embedding a form on multiple pages as a partial view. I have a contact form I'm looking to embed on multiple pages on a site. Usually, the form would be on a ...
3
votes
1answer
1k views

ASP.NET MVC - Refresh PartialView when DropDownList changed

I have a search form that is an Ajax form. Within the form is a DropDownList that, when changed, should refresh a PartialView within the Ajax form (via a GET request). However, I'm not sure what to do ...
2
votes
1answer
51 views

loading or refreshing only the partial view using Ajax

I have a view which i load a partial view within it, I want to refresh one div on the view without loading the whole view. my code: <div id="newrealeaseform"> <div ...
2
votes
0answers
89 views

Partial View not working in IE7, but works fine in FF, Chrome (MVC 3, JQuery Tab Container) [closed]

I was thinking maybe this has something to do with my jquery, but I'm not sure. When I fill data into one tab and navigate to the next, then back to the first the data is there in FF and Chrome, but ...
2
votes
1answer
58 views

Loading partial view with an Edit Form doesn't overload correctly

I am trying to load an edit form which is a PartialView, into a div using jQuery. I am overloading the EditUser action. The 1st one is for passing the id and loading the form with existing details. ...
2
votes
1answer
147 views

Passing a selected value from a partial view to the main view's viewmodel

As ASP.Net MVC3 newbies we have an issue that would like assistance with. (Questions at the bottom of this thread too.) First of all I am not sure if the following is the best way to go about this ...
2
votes
2answers
135 views

Replace partialview after action in ASP.Net MVC

I'm still quite new to ASP.NET MVC and wonder how-to achieve the following: On a normal view as part of my master page, I create a varying number of partial views with a loop, each representing an ...
2
votes
2answers
129 views

ASP.NET MVC: Correct place for Partial Views?

Can anyone confirm the best place for a partial view in ASP.NET MVC? My thinkings are if its a globall view thats going to be used in many places then SHARED. If its part of a view thats been ...
2
votes
3answers
263 views

Getting posted values in MVC PartialView

I've created a PartialView which I render with Html.RenderPartial, passing the name of the view and the strongly-typed data item to bind to (below): <% ...
2
votes
2answers
912 views

How do I filter data in MVC partialview using jQuery

How do I update data using Ajax, jQuery when I change a dropdown on my Index.aspx page? I have a page with a ProjectList dropdown which should show all issues related to that Project. If I change the ...
2
votes
2answers
845 views

Running jquery script block with a MVC PartialView

So I'm loading a partialview using an ajax actionlink, but need to embed some jquery as part of the partialview that returns. What i'm strugling with is how to fire the script once its finished ...
1
vote
1answer
94 views

Posting data back to a controller from a Partial View rendered by Ajax

I am returning a Partial View from an Ajax call: $(document).ready(function () { $("#itemSubmitter").click(function (e) { $.ajax({ url: '@Url.Action("GetShippingAddress", "Order")', ...
1
vote
2answers
110 views

why doesn't .html() work in internet explorer 7

i have an asp.net-mvc site and i am getting weird behavior in internet explorer 7 on one page where the html result of an ajax call isn't showing up on the screen. This works perfect in Firefox, ...
1
vote
1answer
131 views

MVC3: How to specify that a partial view be loaded when it is located in a different, non-searched, folder?

I am trying to include a partial view in a view that is located in a different folder. So I have the following view: /_mvc/Views/Home/Index.cshtml It has the following line of code: ...
1
vote
2answers
687 views

MVC3 partial view postback not work?

I have LogOn partial view in the AccountController : public ActionResult LogOn() { return PartialView(); } // // POST: /Account/LogOn [HttpPost] public ...
1
vote
2answers
242 views

ajax and asp.net-mvc - should i use PartialView or Json?

i have an asp.net-mvc site. i have a page with a grid of data on it and when i want to edit a row (by showing up a popup form). i have 2 options: Preloading and hiding the form on initial page ...
1
vote
2answers
1k views

Partial ASP.NET MVC View submit

I'm new in ASP.NET MVC so the question could appear 'stupid', sorry. I have a Partial View inside my Home view. The Partial View submit a form calling an Action Method inside the HomeController. It ...
1
vote
2answers
3k views

ASP.Net MVC: Html.Display() for object in a Collection

The standard MVC example to draw an item with the appropriate View Template is: Html.DisplayFor(m => m.Date) If the Model object has a property named Date of type DateTime, this returns a string ...
1
vote
1answer
179 views

How can i validate partial view that is returned from controller

I have a view page with ajax.action link which returns a partial view from controller and render it to divid as updated target id.But I could not perform client side validation on that partial ...
1
vote
3answers
220 views

how do you pass in a collection to an MVC 2 partial view?

how do you pass in a collection to an MVC 2 partial view? I saw an example where they used the syntax; <% Html.RenderPartial("QuestionPartial", question); %> this passes in only ONE question ...
1
vote
2answers
355 views

how do you reuse a partial view with setting different ids

i have a partial view with a dropdown in it. the code looks like this: <%=Html.DropDownListFor(x => Model.Exercises, new SelectList(Model.Exercises, "Id", "Name", Model.SelectedExercise), new ...
1
vote
1answer
397 views

ASP.NET MVC - PartialView html not changing via jQuery html() call

When I change the selection in a DropDownList, a PartialView gets updated via a GET request. When updating the PartialView via the jQuery html() function, the html returned is correct but when it ...
1
vote
1answer
521 views

ASP.Net MVC: Problems with PartialView

I have LogOn.ascx control which is located on master page site.master: <% Html.RenderPartial("LogOn"); %> This control contains form with email and password textboxed which is submitted to ...
0
votes
0answers
49 views

jqGrid inside ASP.NET MVC3 partial view

I'd like to put a jqGrid inside a partial view and render it after user request, inside a jQuery dialog box. Is it possible? How I could implement this behavior? Thank you!
0
votes
0answers
21 views

JQuery Mobile Control in partialview does not have the right style

In the regular view, <a href="#" data-role="button">Button</a> will give you a nice looking button. But if the above code is in a partial view, it only renders as a regular html link... ...
0
votes
0answers
41 views

FancyBox with PartialView in MVC3

I'm wondering if anyone has an idea for how to use FancyBox in an MVC3 site to load a partial view (as a popup). FancyBox works fine for me when loading a full view, but breaks if the controller ...
0
votes
0answers
18 views

How can I close the PartialView and/or return to the View

I have a TabNotes View that gets called from a TabNotes ActionResult. The View shows a grid with notes. I load a PartialView CreateNotes with a CreateNotes ActionResult. Through this partial view new ...
0
votes
1answer
58 views

How can I use @using in partial view?

I have a grid filled with notes and I want to be able to add a new note. This works using two different views, but that makes the CreateNote view open a new window. I want this to open in the same ...
0
votes
0answers
80 views

MVC3 Razor - Remote validation not firing

I try to implement a "Forgot password" mechanism and I thought it'd be better to check the user name and the e-mail address before resetting the password and sending the email. I did this: -- model: ...
0
votes
1answer
57 views

ASP.NET MVC 3 - tell partialview to regrab the viewdata values?

Let's say I have a partial view X.ascx like this: <div id = "updateTargetIdForAjaxForm"> ... javascript code which only has function definitions. ... ajax form with buttons inside <div ...
0
votes
2answers
90 views

Reporting errors from Ajax invoked PartialView methods in MVC

If a normal page load errors I can report the exception details to the user via the Error view and HandleErrorInfo model. If an ajax call expecting a Json result errors, I can explicitly handle the ...
0
votes
2answers
73 views

Javascript not working in Partial View

This problem is similar to what is described in Execute Javascript inside a partial view in ASP.NET MVC The below piece of code in index.cshtml is working fine... <label ...
0
votes
0answers
65 views

self ajax partial view in MVC3

I have a partial view inside a div with id 'rating'. So I have a ajax link inside the same partial view. So when I click on the link its updating one time and if i click the link second time, its ...
0
votes
2answers
170 views

MVC asp.net PartialView causing No Parameterless constructor error?

Having an issue with an MVC 2.0 application partial view that all of the sudden when accessed and stuff is actually in the ViewData, the dreaded No parameterless Constructor error. I Have followed the ...
0
votes
1answer
324 views

Problem displaying a webgrid in MVC pertial view

I already a have a view. Now I have to add a new web grid in that view. To do this, I have create a partial view and trying to bind a webgrid in the partial with no success. :( This is my controller: ...
0
votes
0answers
50 views

Load MVC PartialView via Ajax

In my View I have: $.ajax({ url: '/Profile/TryToGetPersonalInfo', type: 'post', success: function (outData) { if (outData.loggedIn == true) { ...
0
votes
1answer
76 views

How to load a partialview with an int array use jquery in asp.net mvc

I use this code to get checked date,but it's not get the int[] value. Where is wrong. View Page: function displayCheckedPersons() { var $checkedRecords = new Array(); var j; ...
0
votes
1answer
470 views

ASP.Net MVC 3 Razor, Generic Approach for FileUpload Partial View

I have this schema, now i want In Create View of Artist, I want to use CreatePicture Partial View for uploading picture and saving data in database. And similar for Album controller and all other ...
0
votes
0answers
111 views

Using a partial view with its viewmodel in different forms

I have a partial view with its own ViewModel class, including validation rules like [Required] and so on. Call the PartialView ViewModel class 'PartialViewModel'. I want to use this partial view in ...
0
votes
0answers
46 views

Rendering PartialView containing some logic through jquery

I have a PartialView containing html & server-side code (using <% ...%>). From another View I am trying to call a controller's method (i.e. Reply, as in code below) which would load/render ...
0
votes
1answer
243 views

How do partialviews work in asp.net MVC when passing parameters back?

I have a page with a partialview on it which is a list of items. I have a button on it which shows the next 5 items. This is done via ajax:- using (Ajax.BeginForm("ShowUpdates", new AjaxOptions() { ...
0
votes
0answers
313 views

ASP.Net MVC - RenderPartial with ActionLink in same div

How do I load RenderPartial with ActionLink? I found this code on a forum but it doesn't work: View <%=Ajax.ActionLink("Eventi", "Index", "Account", null, new AjaxOptions() { UpdateTargetId = ...
0
votes
1answer
249 views

partial view with different viewmodel inherited

I have a MVC2 project with a ViewModelBase. I have a PartialView called by the masterPage : <%@ Master Language="C#" ...
0
votes
1answer
60 views

Validate partialview with complex model?

I have a timesheet application where I load a PartialView with jQuery. Everything works fine, but I have no idea how to validate the input. I have tried to do it similarly to how I've done it before, ...
0
votes
1answer
363 views

MVC 2 <% HTML BEGIN FORM %> COLLIDES WITH PARTIAL VIEW

I am doing a MVC 2 vb project for a company, and the following codes are used to retrieve database tables thru model.edmx. I have mutiple tabs which i've implemented separate partial views to contain ...
0
votes
1answer
189 views

Passing model in PartialView in MVC 2 application?

I have a timesheet application where a View contains a PartialView which is loaded by jQuery. The main View and the PartialView are strongly typed with different model types. Everything works fine ...
0
votes
1answer
438 views

PartialView and HTTPPOST action

I've a problem with partial view and controller HTTPPOST action : When I'm in HTTPPOST to my partialview, only partial is return, not index page with partialview. I don't understand why! The ...

1 2