Tagged Questions
The partial-views tag has no wiki summary.
35
votes
8answers
8k views
Include JavaScript file in partial views
I am wondering what the best practice is for including javascript files inside partial views. Once rendered this will end up as a js include tag in the middle of my page's html. From my point of view ...
14
votes
1answer
3k views
ASP.NET MVC Strongly Typed Partial View, gives could not load type error
I am attempting to create a strongly typed view with a "MVC View User Control" that is being rendered using Html.RenderPartial(). The top of my ascx file looks like this:
<%@ Control ...
12
votes
5answers
3k views
MVC3 Layout Page, View, RenderPartial and getting script files into the Header (from the partial view)
So I have a Layout page
<head>
@RenderSection("HeaderLast", required: false)
</head>
A view
@section HeaderLast
{
<script src="@Url.Content("~/Scripts/knockout-1.2.0.js")"
...
12
votes
4answers
3k views
How to include a partial view inside a webform
Some site I'm programming is using both ASP.NET MVC and WebForms.
I have a partial view and I want to include this inside a webform. The partial view has some code that has to be processed in the ...
10
votes
4answers
4k views
ASP.NET MVC - Combine Json result with ViewResult
Can I return a Json result that contains also a rendered view?
I need it to return the new ID of a submitted form along with its HTML and some other properties.
Also that can be helpful when I need ...
9
votes
2answers
1k views
Adding a script reference to the html head tag from a partial view
How do I inject a script tag such as
<script src="somejsfile"></script>
or
<script type="text/javascript>some javascript</script>
into the head tag of a page from a ...
9
votes
2answers
4k views
Rendering the field name in an EditorTemplate (rendered through EditorFor())
I'm currently building the Admin back-end for a website in ASP.NET MVC.
In an ASP.NET MVC application, I've started using the 'EditorFor' helper method like so:
<div id="content-edit" ...
8
votes
2answers
2k views
How to include JavasScript from a Partial View in ASP.NET MVC3
I would like to be able to provide a way for partial views to include JavaScript code / files at the bottom of a view. This would enable partial views to include any JavaScript files that they depend ...
8
votes
1answer
569 views
What's the current practice for partial caching in ASP MVC2?
My website pages are composed of two kinds of content. The first is variable between users but constant for all pages. The second is constant across users, but variable between pages. This is a common ...
8
votes
2answers
12k views
Using Html.RenderPartial() in ascx files
I try to use Html.RenderPartial in acsx file
and and I've got error
Compiler Error Message: CS1973: 'System.Web.Mvc.HtmlHelper' has no applicable method named 'RenderPartial' but appears to have an ...
8
votes
6answers
12k views
ASP.NET MVC 2 loading partial view using jQuery - no client side validation
I am using jQuery.load() to render a partial view. This part looks like this:
$('#sizeAddHolder').load(
'/MyController/MyAction', function () { ... });
The code for actions in my ...
8
votes
3answers
2k views
How to handle model state errors in ajax-invoked controller action that returns a PartialView
I have a POST controller action that returns a partial view. Everything seems really easy. but. I load it using $.ajax(), setting type as html. But when my model validation fails I thought I should ...
8
votes
4answers
2k views
ASP.NET MVC “Components”
Is there someway to have a part of the page that renders like a little sub-page, like components. For example if I have a shopping cart on all my pages?
Thanks in advance :)
7
votes
1answer
1k views
A controller action which returns a partial view inserts the logon page when authorization fails
I have a view that loads a partial view from a controller action using jQuery. The controller action is decorated with the Authorize attribute and if the user has timed out when that action is called ...
7
votes
5answers
707 views
ASP.Net MVC partial views keeping their model state?
This is probably again a newbie question.
When I create an ASP.NET MVC2 application, an Account Controller with an Action LogIn is created like this:
[HttpPost]
public ActionResult LogOn(LogOnModel ...
7
votes
2answers
4k views
ASP.NET MVC 2 - When To Use Templates vs When to Use Partial Views
One of the new features in ASP.NET MVC 2 Preview 1 is support for the concept of Editor Templates and Display Templates which allow you to pre-define how a given object will be rendered for display or ...
7
votes
2answers
5k views
Working with Partial Views in ASP.NET MVC
Background
I'm receiving the following error when trying to render a partial view in ASP.NET MVC. I am new to ASP.NET MVC and am sure the error is simple to resolve and just stems from my lack of ...
6
votes
4answers
942 views
Rails: confused about syntax for passing locals to partials
Understanding Rails "magic" with regards to rendering partials (and passing locals into them).
Why does this work:
<%= render "rabbits/form" %>
And this work:
<%= render ...
6
votes
4answers
238 views
Organizing partials for a polymorphic resource
I'm looking for how others typically organize their partials for a polymorphic resource.
Example:
I have Image which is polymorphic and depending on what is imageable, I want to display things ...
6
votes
3answers
1k views
Ruby on Rails: conditionally display a partial
I'm not sure if I'm doing the best approach here, but I have a block of data that I want to show after a search is done and to not be there at all before. First of all, there is nothing to show, and ...
6
votes
2answers
1k views
Difference between Partial VIews and User Controls in MVC
Can anyone please tell what's the exact differences between partial views and user controls in an MVC app?
Which one is feasible to use? I am using user controls for filling my views which have one or ...
6
votes
1answer
3k views
ASP.NET MVC Custom Type List in Partial View
I have a view that takes a PaginatedList (like in Nerd Dinner sample). The page works as intended. Now I have added a partial view that takes the same PaginatedList and I call RnederPartial inside the ...
5
votes
1answer
83 views
Nested RenderAction are rendered very slowly
I have an PartialViewResult action which renders a PartialView that I call from a $.ajax call on the page.
That PartialView also has a foreach loop for the items in the VM and within that PartialView ...
5
votes
4answers
998 views
Reloading an ASP.NET MVC3 Partial View without using AJAX
I have an MVC3 application with Razor and I created a View that inside renders a Partial View. This is how the main View looks like:
@{Html.RenderPartial("_SearchFilters", Model.SearchFilters);}
@* ...
5
votes
3answers
346 views
Partial Views in MVC
I'm brand new to MVC and have just come across a scenario that I need some help with.
I'll just briefly outline my scenario as if it were a Web Forms application that I'm far more familiar with.
...
5
votes
6answers
608 views
Add CSS references to page's <head> from a partial view
Is there a way to add CSS references to a page from a partial view, and have them render in the page's <head> (as required by the HTML 4.01 spec)?
5
votes
5answers
5k views
Difference between MVC 3 Partial Page (Razor) and MVC 3 View Page with Layout (Razor)?
In MVC 3 Beta, is there a difference between the templates MVC 3 Partial Page (Razor) and MVC 3 View Page with Layout (Razor) ?
I added a partial page (_partialList) to my application. Now when I ...
5
votes
2answers
524 views
ASP.NET MVC partial views slow?
I just happen to check the performance of an ASP.NET MVC application we are building. I was going to insert a partial view into a loop, and just out of curiosity I checked how long it took to render ...
5
votes
2answers
8k views
How to render partial view in asp.net mvc 2 using Controller and Action?
<body>
<div id="header">
<div class="title">SPORTS STORE</div>
</div>
<div id="categories">
<% Html.RenderAction("Menu", "Nav"); %>
</div>
<div ...
5
votes
4answers
401 views
Removing logic from partial views in ASP.NET MVC
I am aware that views should not have code in them but in a project I am working on I have a lot of logic in the views.
My home page has
<% Html.RenderPartial("SearchResults"); %>
Now in ...
5
votes
4answers
7k views
Self-AJAX-updating partial-view/controller in ASP.Net MVC and the duplicating div
I have a partial view in MVC that goes something like:
<div id="comments">
...
</div>
Inside that div there's a form that calls a controller using AJAX and gets back that same ...
5
votes
3answers
1k views
ASP .NET MVC correct UserControl architecture
I'm trying to learn the new ASP .NET MVC framework and would like to know the best practice for using UserControls.
I understand that you can render UserControl's as a partial and pass data to them ...
4
votes
2answers
84 views
How to Validate Single Item in a list
I have a Model that is shaped like this:
public class GlobalSettingsViewModel
{
public List<SettingViewModel> Settings{ get;set;}
}
public class SettingViewModel
{
public string Name{ ...
4
votes
2answers
134 views
Ajax.ActionLink returns Login page within div when user need to login again
I have a Ajax.ActionLink which results in a partial view being returned. However, if my FormsAuthentication expires and the user needs to login again, the whole Login page is returned as the partial ...
4
votes
2answers
44 views
asp.net mvc partial view errors out
My partial view, called _myTestView.cshtml
<div style="border:1px solid red;">
TEST
</div>
I call it like that
<div>
@Html.RenderPartial("_myTestView");
</div>
I get ...
4
votes
3answers
98 views
New View or Partial View
This is the situation:
I have an ASP.NET MVC 4 application. When I run the application I go to a page and the Index - action on the controller takes a Guid as id - parameter. With that id I get a ...
4
votes
4answers
119 views
What is a good way to build sub views with logic in ASP.NET MVC 3
We're building a business application using Microsoft ASP.NET MVC 3.
Some views are now becoming so complex that it seems reasonable to divide them into two or more separate views, with separate ...
4
votes
1answer
3k views
ASP.NET MVC3 Partial View naming convention
I'm new to the MVC development so please bear with me. Is it really necessary to name my partial view like _Action.cshtml (with the _ underscore) to comply with the naming convention?
Here's my ...
4
votes
2answers
881 views
Client side templates and partial views and express
We have a large amount of client side templating solutions recently including:
jquery templates
John resig micro templating
handle bars
EJS
and more
As far as I can see only jQuery templates ...
4
votes
3answers
929 views
json erb template cannot find other html partial
I am trying to have a json response in which some value is html rendered by a partial
#projects_Controller.rb
def index
respond_to do |f|
f.json
end
end
# index.json.erb
{
...
4
votes
1answer
257 views
ASP.NET MVC Partial Views in Java Spring MVC
I am wondering if Java Spring MVC has some sort of implementation that relates to returning partial views like ASP.NET MVC? Basically I want to return HTML, that is bound to an object and return it ...
4
votes
2answers
145 views
How to make these 2 blocks of almost identical code reusable?
I need advice on what I need to do to make the following two blocks of code reusable. I have to produce another table of funds and while I'm doing that, I'd like to create FundsTable.ascx partial view ...
4
votes
1answer
949 views
How to use the Zend Framework partial view helper outside of a controller or view?
I would like to create a custom class that will generate an HTML email. I want the content of the email to come from an "email view scripts" directory. So the concept will be that I can create an HTML ...
4
votes
2answers
619 views
Partial view postback from a standard Html form with MVC
I have a file upload button on my MVC view. After the file is uploaded, my FileList partial view on the page should refresh.
I tried to upload with Ajax.BeginForm(), but have discovered that Ajax ...
4
votes
2answers
1k views
$(document).ready() and partial view load
I am developing an application using Asp.net mvc and jquery. I'd like to use the same naming convention (classes and ids) for html elements in different views.
In case when I want to load a partial ...
4
votes
1answer
285 views
.NET MVC: How to fix Visual Studio's lack of awareness of CSS classes in partial views?
This has been sort of an annoyance for me for a while. I make pretty heavy use of partial views in MVC, and am using Visual Studio 2008 to develop. The problem is that when I give html elements a ...
4
votes
3answers
804 views
ruby on rails logic for a partial in a layout
I have a sidebar that is going to have some logic in it, similar to how a view talks to a controller. Where do I put the logic in for the partial? Do I create a new controller for the layout and put ...
4
votes
3answers
2k views
How does the Html Helper, RenderPartial, work? How can I implement a helper that can bring in content from a partial view?
When you use Html.RenderPartial is takes the name of the view you want to render, and renders it's content in that place.
I would like to implement something similar. I would like it to take the name ...
4
votes
1answer
348 views
Determining the name of current view within a partial view in ASP.NET MVC
I have a partial view in my test ASP.NET MVC application. This view is responsible to display application menu buttons.
I want to change the color of button which is currently active page. Currently ...
4
votes
5answers
968 views
ASP.net MVC - rendering a List containing different types, with a different view for each type
Imagine I have a list of objects that implement an interface called ISummary
The objects within this list MAY have additional properties ie.
public interface ISummary {
Guid Id {get;set;}
string ...