Tagged Questions
The renderpartial tag has no wiki summary.
60
votes
3answers
10k views
Html.Partial vs Html.RenderPartial & Html.Action vs Html.RenderAction
What is difference between Html.Partial and Html.RenderPartial in asp.net mvc?
also What is difference between Html.Action and Html.RenderAction in asp.net mvc?
48
votes
4answers
9k views
asp.net mvc renderpartial with null model gets passed the wrong type
I have a page:
<%@ Page Inherits="System.Web.Mvc.View<DTOSearchResults>" %>
And on it, the following:
<% Html.RenderPartial("TaskList", Model.Tasks); %>
Here is the DTO ...
41
votes
4answers
20k views
Render Partial View Using jQuery in ASP.NET MVC
How do I render the partial view using jquery?
We can render the partial View like this:
<% Html.RenderPartial("UserDetails"); %>
How can we do the same using jquery?
28
votes
6answers
12k views
Render partial from different folder (not shared)
How can I have a view render a partial (user control) from a different folder?
With preview 3 I used to call RenderUserControl with the complete path, but whith upgrading to preview 5 this is not ...
12
votes
2answers
7k views
passing parameters to my partial view?
I am calling my partial view like this:
<% Html.RenderPartial("~/controls/users.ascx"); %>
Can I pass parameters to partial view? How will I access them in the actual users.ascx page?
12
votes
3answers
7k views
ASP.NET MVC Beta 1 - where is Html.RenderPartial?
I'm just in the process of upgrading my Preview 5 application to Beta 1, and I'm nearly there save for this one error when trying to render a control:
'System.Web.Mvc.HtmlHelper' does not
...
11
votes
1answer
1k views
Html.RenderPartial giving me strange overload error?
I made a test partial page named _Test.cshtml and put it in the same directory as my view that will be calling it, here it is:
<div>hi</div>
And in the calling cshtml view, I simply ...
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
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
4answers
1k views
ModelFactory in ASP.NET MVC to solve 'RenderPartial' issue
The 'RenderPartial()' method in ASP.NET MVC offeres a very low level of functionality. It does not provide, nor attempt to provide a true 'sub-controller' model *.
I have an increasing number of ...
8
votes
2answers
5k views
Shorthand for creating a ViewDataDictionary with both a model and ViewData items?
Is there any way to create a ViewDataDictionary with a model and additional properties with a single line of code. I am trying to make a RenderPartial call to a strongly-typed view while assembling ...
8
votes
7answers
9k views
Html.RenderPartial call from masterpage
Here is a scenario: Let's say I have site with two controllers responsible for displaying different type of content - Pages and Articles. I need to embed Partial View into my masterpage that will list ...
6
votes
2answers
604 views
Problems rendering a *very* simple partial in a *very* simple app
UPDATE: Ok, I am a retard & feel free to give me negative votes because the issue was that I had named the file _stylesheet.html.erb & not _stylesheets.html.erb. I thought I checked spellings ...
6
votes
3answers
19k views
ASP.Net MVC and RenderPartial w/ relative paths
I've been playing around with ASP.NET MVC and had a question. Or maybe its a concern that I am doing this wrong. Just working on a lame site to stretch my wings a bit. I am sorry this question is ...
5
votes
1answer
950 views
Add session to fake httpContext in C# MVC project
How can i add the session to a fakeContext ?
This function have we build for partial request where the content must be returned as a string.
Only we don't have sessions now in the partial request.
...
5
votes
2answers
2k views
conditional formating in rails partials
I am rendering a rails partial and I want to alternate the background color when it renders the partial. I know that is not super clear so here is an example of what I want to do:
Row One grey ...
4
votes
2answers
5k views
Render Partial View using Jquery Ajax with variable data
I have already read this post, but I am not sure know to make it work taking data from the user. Here is the ajax jquery I am using. I know (or at least think) that this cant render a partial. But it ...
4
votes
2answers
2k views
jQuery partial page refresh after form submit
When using jQuery to submit a form is it possible to place the resulting page (after the submit) inside another HTML element?
I'll try to make this clearer. Up to now I've been using Callback ...
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 ...
3
votes
1answer
805 views
MVC3 RenderPartial caching across multiple pages
Can anyone tell me if its possible to Cache a RenderPartial across multiple pages? I have a RenderPartial for a user profile that shouldn't really ever change unless the user updates their profile. So ...
3
votes
3answers
380 views
Reuse js.rjs files in Rails?
i have an .js.rjs file, that must be used in many places.
How can i reuse it ?
For example, in my .js.rjs file i need something like this:
page << ( render "widely_used_stuff" )
where ...
3
votes
1answer
825 views
Design pattern to integrate Rails with a Comet server
I have a Ruby on Rails (2.3.5) application and an APE (Ajax Push Engine) server. When records are created within the Rails application, i need to push the new record out on applicable channels to the ...
3
votes
1answer
257 views
AJAX Partial Rendering issues for the default page in IIS 7 when using custom http module
The problem
When I try to make a AJAX partial update request (using the UpdatePanel control) from the default page of an IIS7 web site, it fails- instead of returning the html to be updated, it ...
3
votes
5answers
935 views
When Is It Appropriate to Use Html.RenderAction()?
I'm a little bit unsure about when it's appropriate to use Html.RenderAction() to render my Views and when not to. My understanding is that because it's not an 'official' component of ASP.NET MVC it's ...
2
votes
1answer
81 views
Why Asp.net partial view not returning back?
I am a newbie and just started learning the asp.net mvc, as I was going through the partial view tutorial and I created the small test application which is working fine.
I have a page which has a ...
2
votes
1answer
246 views
Rendering partial inside js.erb. Is it possible to get raw string so I can strip whitespace?
I want to render a partial in my js.erb file so I can use the generated HTML in my Javascript. Here's some code to serve as an example.
create.js.erb
$(function(){
var html = "<%= ...
2
votes
0answers
293 views
validating form which is rendered using renderPartial in yii
I have more then one forms on one page and I am rendering one form using renderPartial, now if I want to validate it using ajax validation it don't work.
view code
<?php ...
2
votes
1answer
345 views
ASP.NET MVC 2 View with PartialView - PartialView Opens New Page
My code works perfectly in VS2010 C# but once published to IIS7 the PartialView (list of records) does not get rendered in the View...it rolls to a new page without the data except for the correct ...
2
votes
1answer
217 views
RenderPartial renders on Dev but fails on Production server
I'm calling a RenderPartial from a primary view where 'user' exists:
@{Html.RenderPartial("DisplayTemplates/uInfo", user);}
Works on my dev machine but the production server is tossing that runtime ...
2
votes
5answers
362 views
MVC2 - How put common LOGIC control (Like Search/Find) on each page?
I'm having trouble figuring out how to do the following:
On every page (or every page I so desire), I'd like to put a common control widget (e.g. think - Search functionality that contains a ...
2
votes
2answers
623 views
Rails partial template rendering repeatedly when a helper method uses the yield keyword
I have seen some strange behavior when using rails with partial layouts plus a helper method coded as an iterator using the yield keyword. I am hoping someone can:
Explain what's going on and why I ...
2
votes
2answers
262 views
Javascript not executing after partial rendering
I have a asp.net panel that is initially hidden and is shown when a button is clicked. There is javascript inside that panel and it doesn't execute after the panel is set to be visible. I can see ...
2
votes
1answer
635 views
.Net MVC UserControl - RenderPartial or EditorFor
I have a View that contains a usercontrol. The usercontrol is rendered using:
<% Html.RenderPartial("GeneralStuff", Model.General, ViewData); %>
My problem is that the usercontrol renders ...
2
votes
1answer
185 views
ASP.NET MVC ViewPage rendered in a ViewPage
I'm wondering if it is possible to render a ViewPage inside of a ViewPage.
Normally, you'd have this:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<my_object>"%>
and then in ...
2
votes
3answers
2k views
Pass ViewData to RenderPartial
I'm trying to call this method:
RenderPartialExtensions.RenderPartial Method (HtmlHelper, String, Object, ViewDataDictionary)
http://msdn.microsoft.com/en-us/library/dd470561.aspx
but I don't see ...
2
votes
3answers
624 views
Asp.Net Mvc - Render partial view - Manage errors
I got an aspx page call ListArticles with the following code :
<% Html.RenderPartial("Create", new Models.Article()); %>
Create is a partial view (Create.ascx).
In my controller, I got ...
2
votes
2answers
1k views
Render ASP.NET MVC string to View without HttpContext or ControllerContext?
I need to render an ASP.NET MVC view to a string so as to be able to send it via an email (it is an order confirmation email defined in an .ascx file ).
I've successfully been able to render an ...
2
votes
4answers
554 views
Rendering other controllers' templates (Ruby on Rails)
I am building a sample site to familiarize myself with RoR. I followed the book "Agile Web Development with Rails" up to a point, and now I am experimenting and using it as a reference, however I ...
2
votes
1answer
280 views
Cassini much slower than IIS for MVC RenderPartial
I have an MVC view with a partial view recursive call that displays hierarchical data.
The complete tree typically includes in the order of 500 or so items.
The data is all included in the model, ...
2
votes
2answers
838 views
Renderpartial conditionally on masterpage in asp.net mvc
Hi I have the following menus defined on my masterpage in a asp.net mvc web application
<%Html.RenderPartial("AdminMenu"); %>
<%Html.RenderPartial("ApproverMenu"); %>
...
2
votes
1answer
599 views
How to return Nested PartialViews (including their javascript) from an AJAX call in ASP.Net MVC
I have created a treeview of Categories using nested partial views:
my Index page (that displays the treeview):
<div>
Category Menu:
<input type="button" value="1" name='selectCat_btn' ...
1
vote
1answer
42 views
Render own partial via javascript in Rails
Say there is a partial called _hello_world.html.erb
<% if toggle %>
HELLO WORLD ON
<%= link_to "Turn it off", what_should_come_here %>
<% else %>
HELLO WORLD OFF
...
1
vote
2answers
75 views
Bizarre hidden character in MVC3 Razor loop
I have a loop
<ul id="news-list" class="thumbobs-list">
@foreach (var item in Model.News) {
@Html.Partial("RenderNews/" + item.TypeString, item)
}
</ul>
that uses ...
1
vote
1answer
35 views
Rails: How to get a Jquery function to act on a newly added partial?
I'm working on an ajax star rating system.
For the stars I've used the label's of radio buttons.
When the page loads if the item has a rating (i.e. 3) it will check radio button 3 and all labels ...
1
vote
2answers
119 views
Dotnetnuke partial rendering make my jQueryUI widget stop working
I want to use tab widget of jQueryUI in dotnetnuke 5.6.3
I registered jQueryUI in my module and it works fine but when I use partial Rendering in my page it fails to load.
Here is my code:
...
1
vote
2answers
177 views
How can I render a partial page on click a HTML Button?
I am new to MVC3.0 and have to use jquery. I as wondering some one can help with how can I render a partial view page on clicking a HTML Button?
I know it is really easy, the button could be called ...
1
vote
1answer
107 views
Adding a method to FormBuilder that calls a helper method that renders a partial
So I've got this helper method, right?
def table_form_field(name_or_options = nil, *args, &block)
# ...
render :partial => "snippets/table_form_field", :locals => options
end
It's ...
1
vote
2answers
744 views
Is it possible to render a js.erb without using the respond_to method and using an unconventional filename?
Is it possible to render a js.erb in response to an AJAX request without using the respond_to method?
I am asking because of a few reasons:
I will only be making AJAX calls to my controllers;
I ...
1
vote
1answer
76 views
Creating reusable widgets
I`m using asp.net mvc 2.0 and trying to create reusable web site parts, that can be added at any page dynamically.
The problem I have is how to load a partial view with all related js and data? Ive ...
1
vote
1answer
826 views
Rails 3 ajax update partial doesnt work without page refresh
I'm working on a Rails 3 shopping cart. I've a catalog page that displays all products and one partial that gives a gist of the shopping cart. So whatever product a user adds to the cart is ...