0
votes
2answers
23 views
+100
Rendering Partials from One Controllers View to Another Controllers View in Rails
I have a view for a controller called "show". Inside that view, i want to render the contents of another controller's view - and obviously, the logic for the form on that view to …
0
votes
1answer
35 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 …
0
votes
2answers
42 views
Why is this render :partial line iterating my collection twice?
Given these relationships:
class Account < ActiveRecord::Base
has_many :employments
has_many :people, :through => :employments
accepts_nested_attributes_for :employmen …
0
votes
3answers
35 views
Passing two different models to a view with ASP.Net MVC
I'm trying to set up a view that displays two different models. For example, I have a "Details" view that shows details of a customer; which I am passing my customer model. I als …
0
votes
1answer
34 views
Specifying partial view path using T4MVC
Hi all,
I am using T4MVC in our ASP.NET MVC Project.
I have a statement like this in my view
<% Html.RenderPartial(MVC.SomeController.Views.PartialViewName); %>
Which wa …
2
votes
2answers
51 views
Zend Framework how to get the number of item in the loop ? partialLoop partialCounter and ?
Hello everyone,
I want to to make a particular processing for the last item of a partialLoop, the documentation mention about $this->partialCounter but not the variable with t …
0
votes
3answers
66 views
Seemingly simple MVC partial view question
I am trying to display my data (images) in two columns of a table in my partial view. The code below does not seem to work as it displays each image in its own row. What am I missi …
0
votes
0answers
40 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" na …
0
votes
3answers
24 views
How to pass two sets of data to a view?
How do I go about passing two sets of Data to a view in ASP.NET MVC?
I've tried a couple of things and neither have worked so I've come to the simple conclusion: I'm doing it wron …
0
votes
2answers
27 views
PHP equivalent for RoR template partials/collections
Hi, I'm trying to figure out the most efficient way to implement RoR-style partials/collections for a PHP template class that I'm writing. For those who aren't familiar with rails, …
0
votes
2answers
107 views
Spark view engine - passing model to partial view
It would like to iterate through list and render partial view for each element:
<for each="Element elem in elements">
<render partial="partialViewName">
</fo …
0
votes
1answer
41 views
asp.net MVC partial with dynamic inherits class?
Hey guys,
I have a partial view that is shared between two controllers and I'm trying to find a way to change what it inherits from depending on which view it is being called from …
0
votes
0answers
63 views
Nested link_to_function / insert_html causes javascript errors
Im using a link_to_function / insert_html to insert a partial into the page. Everything works fine, until i add another link_to_function / insert_html into the partial that is bein …
0
votes
4answers
186 views
How do you build a Single Page Interface in ASP.NET MVC?
Hi all,
I want to build a webapplication with a "Single Page Interface", using ASP.NET MVC.
I have searched if this was at least possible and I think the answer is: not by simple …
1
vote
4answers
59 views
ViewUserControl containing ViewPage
Is there a way to get a reference for the ViewPage that contains a parital view from the partial view ??
