The renderpartial tag has no wiki summary.
2
votes
1answer
47 views
Yii booster - renderPartial the data-content of a popover?
I'm using Yii with YiiBooster extension. I want to have a popover like this:
array(
'header' => '',
'value' => function($data)
{
...
0
votes
1answer
23 views
Render partial containing javascript from a js.erb file
I have a .js.erb file that renders a partial like so:
$("#tasks").append("<%= escape_javascript(render :partial => "task_from_app") %>");
I now need to put some javascript inside ...
5
votes
2answers
232 views
How to create dynamic, multiple partial views using repository pattern in MVC
I am trying to have a general home page that depending on the parameter passed to the control, different content (modules) will be displayed.
For example, a user may select Kentucky from the menu ...
0
votes
0answers
24 views
Async rendering in Partials in Rails 3.2
I have a partial which renders ads which are used on different sites on my page. Displaying the ads works like this:
app/views/layouts/ads.html.haml
.banner
<script ...
3
votes
2answers
192 views
Yii ClientSide Validation on Render Partial not Working
I have a Yii form which calls a render partial from another model (team has_many team_members). I want to call via ajax a partial view to add members in team/_form. All works (call, show, save) except ...
0
votes
2answers
25 views
Rails: Loading in array of partials
In my Rails app I already have the following code:
<% %w(number_of_students edit_class_name tech_help).each do |modal| %>
<%= render "common/modals/#{modal}" %>
<% end %>
There ...
0
votes
2answers
117 views
Ruby on Rails javascript action response (js.erb) is rendering new partial, but not performing ui effects
Context:
I have two models, model1 and model2. Model1 has_many model2's. In the model1's manage page, I render a list of _model2.html.erb files, one for each model2 associated with model1. In ...
2
votes
2answers
143 views
Rendering updated components from backing bean after Save
I have been working on creating a dynamic table that captures all cells that have been updated (for a quicker save) and then to refresh/rerender those cells after a save.
So far, I have the table ...
0
votes
1answer
30 views
Conditionally render partials in application layout
In a Rails 3 application layout i include a partial for flash messages.
While this is ok in most cases, there is a view where I would need flash messages appear in another place;
is there a way in ...
0
votes
1answer
32 views
Passing local variable into partial returns NameError
I am trying to pass the index of something into a partial and am getting a NameError.
Right now, this is my render statement and I am able to access builder just fine.
<%= render 'my_partial', ...
1
vote
0answers
79 views
Rails js action won't run code after partial render
I'm trying to add a newly created partial to an existing list of partials that gets rendered in my create.js.erb controller action response, and it would be really nice to scroll to the item and ...
0
votes
1answer
20 views
How do I update a list of partials rendered with a collection after a form submission of a newly created object in ruby on rails
This is a portion of my groups view. I have a list of partials that I render with a collection of objects:
<div id="container">
<ul>
<li id="form"></li>
<li ...
1
vote
0answers
118 views
issues validation using render partial yii framework
I am loading a view using renderpartial, but the validations not working and not show the error messages. I tried to resolve the problem actived processOUtput in renderpartial but isn“t work.
this is ...
0
votes
1answer
161 views
Refresh HTML Content Provided by Embedded Ruby Without Reloading the Page
I have had some trouble finding a solution to this. Basically, I have an embedded ruby each loop whose body is a partial being rendered for a certain sub group of a model. For instance:
<li ...
0
votes
0answers
190 views
Yii Eajaxupload and cJuiDialog
the button Eajaxupload not show in CjuiDialog but works well in standard form.
view Entradas:
<?php
$this->widget('ext.EAjaxUpload.EAjaxUpload', array(
...
0
votes
1answer
70 views
How do I use another controllers action in the view of a different model in Ruby on Rails using jQuery/AJAX?
I created a page for my first model type, group, that I would like to have a button on that when pressed, brings up an already existing form (html and embedded ruby) in my project (but in a different ...
0
votes
1answer
59 views
render a view from another controller
I'm trying to render one view (index) from one controller to the view of another controller.
index needs to calculate some values in the controller and render the view.
How do I do this?
example: in ...
0
votes
1answer
67 views
RoR, RSpec test failing after refactoring
I'm new to programming and I'm having trouble figuring out an expected error in Hartl's Ruby on Rails 3 tutorial. After refactoring some layout pages, I'm getting a recurring error on what seems to be ...
1
vote
1answer
348 views
Umbraco mvc, rendering partial view cannot be resolved to a type
I have a partial view located in ~/Views/Partials/menubar.cshtml .
In my ~/Views folder i have a master page Called Menubar.cshtml <- this masterpage calls the
@{ Html.RenderPartial("menubar") } ...
1
vote
2answers
93 views
jquery render partial just one time, for second time it not render again just shows previous one
I've to append partial by jquery for my scenario I can't render partial using ajax as it needs controller's interaction and I'm restricted to not use controller.
So I'm doing this
...
0
votes
2answers
175 views
render partial on click
i am trying to reduce the amount of code that has to be rewritten within my app, and would like to call on a set of standard operational partials.
at present this is the method i am using
calling ...
0
votes
2answers
425 views
How to use JavaScript with CHtml button() on a Yii page
I'm trying to use JavaScript in my page. My JavaScript code is:
function edit(){
alert("test");
return document.getElementById("confirm").value="";
}
Calling this, by onclick function
...
0
votes
0answers
137 views
renderPartial - Jquery - innerHTML
i am a bit pissed off JS and CSS registration by renderPartial. I have a problem that i have following view:
<div id="data"></div>
<div id="dayData"></div>
Then i have ...
0
votes
0answers
76 views
no layout with nested_form gem for rails
This gem works quite fine for me. But I've the following problem for that code:
in my form:
<%= f.fields_for :items do |builder| %>
<%= render 'item_fields', :f => builder ...
0
votes
0answers
77 views
ASP MVC 3 render partial to string
I'm trying to render an .ascx file to a string using this method
How to Render Partial View into a String
And it works fine. But if the .ascx file that I'm trying to render contains another .ascx ...
0
votes
1answer
145 views
Partial Rendering for SharePoint application pages?
I have added an infinite scroll bar in a asp.net site page and it is working fine.But when I added the same code for a SharePoint application page it does not work. Below is my code.
...
0
votes
2answers
67 views
where does render :partial html end up
I have a view with an ajax form:
<%= form_tag( {:action => 'some_action'}, {:remote => true}) do %>
...
<%= submit_tag "Submit" %>
<% end %>
Now, in the target action, I ...
1
vote
1answer
42 views
How to render form with nested and single resource
I have this routes
resources :childs do
resources :draws
end
resources :draws
How can I write a single _form.htm.erb for adding and editing draws?
I mean, from new_draw_path I would use ...
0
votes
1answer
62 views
Rails: change render view paths for ONE render call
I want to change view paths for render call (partial):
vp1 = ActionView::PathSet.new
vp1.prefixes << 'bla1'
render partial: 'abc', view_paths: vp1
vp2 = ActionView::PathSet.new
vp2.prefixes ...
0
votes
1answer
424 views
yii renderPartial variable not found [duplicate]
Possible Duplicate:
PHP: āNotice: Undefined variableā and āNotice: Undefined indexā
I'm trying to display a form to create a new Donations within a view that renders Campaigns or rather a ...
0
votes
0answers
223 views
Multiple Partial Views inside a parent view
Ok, so I have a few questions about how to get this to work, and so far i'm having no luck and i'd really like to not have to use an IFRAME...
It renders the parent view, but the ...
1
vote
1answer
150 views
Is it advisable to use if-else php code in Yii framework views?
I am a noob in Yii framework. I am developing an application without using GII CRUD application. Writing my own models and views from scratch.
I would like to know if it is advisable to use if-else ...
0
votes
2answers
172 views
Rails partial taking too much time to render sometimes
In my views, I am rendering a partial. This is actually a row element that shows up in a table some 500 - 600 times. I have eager loaded all associations.
But, the issue is, same partial takes ...
0
votes
0answers
34 views
Can I return JS from before_filter
I am working in Rails 3. I want to render some JS file conditionally from my before_filter. Any ideas if this is possible as the request is HTML and it will expect HTML response.
0
votes
1answer
386 views
shared partials error undefined method `empty?' for nil:NilClass
I've create a partial (views/cart/_cart.html.erb) for my applications shopping cart. I'm rendering it in only in my views/layouts/application.html.erb file. But when I run it I'm getting a ...
0
votes
1answer
588 views
MVC (yii) Calling function in controller with renderPartial
Code from controller:
public function actionSomeName($param){
do something here...
$this->renderPartial('_formCalculations', array(
'modelX'=>$modelX,
...
1
vote
0answers
56 views
Why would a url_for helper in Rails fail when re-rendering a partial from a different controller?
I have a page with a bunch of widgets that has content that is primarily rendered by the CustomerController. However, there is this other controller called the DigitalItemController that is used to ...
0
votes
1answer
171 views
Using javascript .click inside a partial rails
I have a javascript click function that is called every time my textbox gets clicked on, however for some reason it only works if the textbox is inside the main page, when I move the textbox into the ...
0
votes
1answer
26 views
Call controller and reload partials
I have a page that renders multiple partials, including a Flash div that takes a while to start up.
I have a button that I want to re-hit the controller, pull down any new data, and reload all the ...
-1
votes
1answer
325 views
@html.partial Model Not Found
~/Views/PlanBuilder/PlanBuilder.cshtml
@{
ViewBag.Title = "PlanBuilder";
Layout = "~/Views/Shared/_LayoutPlanBuilder.cshtml";
}
<div id="tabs-1">
<div id="wrap" class="left">
<ul>
...
0
votes
1answer
277 views
MVC 4 solution structure Partial View
Well since most of the tutorials and demos chooses to put the partial view in shared folder im asking for a better way to do this.
My problem:
I want to use partial views in order to create a dynamic ...
0
votes
2answers
419 views
Using Razor “RenderPartial” and “RenderBody”, the body is rendered on top
I am developing a site with Header, Main Menu, Body and Footer sections. I am using a web page base layout (_Layout.cshtml) where I use the RenderPartial() method to render the Header, Main Menu and ...
1
vote
1answer
1k views
MVC4 / Is a partial view what I want?
My site is based off of the MVC4 Web Application with Razor. I would like to divide up the page into areas such as:
-----------------------
| | |
| | |
| ...
0
votes
2answers
92 views
how do I break f.submit from form builder into a partial layout in rails 3?
I am building a multi step form, and I'd like to reuse the button code across multiple views. here is the code I'd like to break out into a partial layout:
<div class="actions">
<%= link_to ...
0
votes
1answer
187 views
Render partial with different link_to paths
I am trying to render a partial that displays a list of names (that I created using :resource :create) and link_to their respective pages. However, I want to implement this twice such that one list ...
0
votes
1answer
192 views
Using the id of a button to render a partial in Rails
I've got a view that displays a partial with a list of all the events a user has created, with an edit link next to it. What I want to happen is that when a user clicks 'edit', a form partial appears ...
1
vote
2answers
414 views
MVC Async Postback & RenderPartial
Apologies if the Title is a bit misleading, I'm just not sure how to go about doing this.
Ok here's the scenario. I am developing a feedback mvc widget that is housed in a Sitefinity 5.1 website. ...
0
votes
0answers
197 views
[Solved]Rails: How to render partial with local variables using Ajax?
I'm using nested partials.
In the likes.controller.rb, these is @feed_items defined.
In the _feed.html.erb partial, there is
<%= render partial: "shared/feed_item", collection: @feed_items %>
...
1
vote
1answer
150 views
Sitecore 6.6 and RenderPartial
It doesn't seem like Sitecore likes the use of Html.RenderPartial. If I try to render a partial view instead of using a Sitecore Placeholder I get and error:
...
0
votes
0answers
108 views
Render EditorFor from controller action does not accept same model as when rendered from view
I have an editor template:
@using RRA.Web.Helpers.SupportClasses
@model AcceptableAssignmentStatusSelectListItem
<option @if (Model.Selected)
{
...



