The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
44 views

AngularJS - does everything need to loaded on initial page load?

I am diving into JavaScript MVC with Angular and as I understand it, along with the initial shell page, all your scripts must be loaded on the initial page load. However, and correct me if I'm wrong, ...
0
votes
1answer
21 views

Unable to get sync gem working, (nomethod error)

I've been trying to install and use the new sync realtime partials gem, but when it comes to putting the code in my views it all goes wrong. This is my existing code, pre sync. <%= render ...
0
votes
0answers
21 views

Mobile views for Rails app?

I'm adding in the process of adding mobile views to my app. I learned to add a new MIME type from the Railscast, and using jquery-mobile instead of jQTouch. As I consider duplicating (and then ...
0
votes
1answer
72 views

Inside Express/EJS templates, what is cleanest way to loop through an array?

I have an Express.js app set up using EJS templates. I successfully looped through an array with classic JS syntax: <% for (var i = 0; i < myArray.length; i++) { this = myArray[i]; // ...
0
votes
1answer
51 views

How do I use shared view script paths for partials in Zend Framework 2?

I'm using Zend Framework 2 (v2.1.4) and I have a partials template that I want to use in several Modules. According to the documentation I can access partials in other Modules, but That said, it’s ...
1
vote
2answers
23 views

Concatenating 2 strings in a partial for a class style

Ok so I am banging my head against the desk on something super simple I should be able to do and cant... I am trying to concatenate 2 strings, So I can have a dynamic class for a partial based on ...
0
votes
1answer
25 views

Redmine Plugin Partials not being found

I have been following the Redmine Plugin Tutorial and read the page on Hooks, but I still can't get my plugins partials to render, using the render_on keyword or otherwise. Here's where I'm putting ...
1
vote
1answer
55 views

Rails is Looking for a Partial in the Wrong Directory

I have a polymorphic Review model. The namespaced model User::Library::Publication is reviewable. The reviews are created properly, but when I try to display them through a partial, Rails looks up the ...
0
votes
1answer
34 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', ...
0
votes
0answers
106 views

handlebars partials parameter passing

I am struggling with passing parameters to handlebars partial. I saw the threads Passing variables through handlebars partial and handlebars - is it possible to access parent context in a partial? but ...
0
votes
0answers
38 views

ActionView::MissingTemplate in Home#index

I'm trying to render brands table details but is is showing the missing partials error. I've copied the error here. ActionView::MissingTemplate in Home#index Showing ...
0
votes
0answers
102 views

angular and rails partial locals

I'm trying to parameterize angular JS variables inside my rails partials, I have searched for the right syntax and couldn't able to get one. Not sure if I'm trying to do something that's not gonna ...
0
votes
1answer
107 views

Rails Tutorial Chapter 10 exercise 5 Using partials to eliminate duplication

I'm new in Rails and as many others I'm learning it with Hartl's Rails Tutorial. But on the exercise 5 chapter 10 (Using partials to eliminate duplication) I'm totally stucked and I would like go on ...
0
votes
1answer
91 views

Rails: Render partial content if parameter is present

I'm trying to conditionally render a section of a partial, if the render includes a particular parameter "has_footer". In _modal.html.erb, I have the following: <div id="<%= id %>" ...
1
vote
1answer
402 views

AngularJS + Twitter Bootstrap: Changes remain on partial after change (jQuery Mobile)

I am trying to build a single page application that has three views using angular and bootstrap. I am new to angular and I want to implement the following: In jQuery Mbile it is possible to have ...
0
votes
2answers
54 views

Rails partials in controller

I've got a code that almost repeats itself in three of my controllers and i was wondering: is there a way to render partials inside controllers? I'll clarify, i want to write the same piece of ruby ...
1
vote
1answer
91 views

Sinatra / Padrino partials with modal window

I've searched exhaustively but can't find an answer for this. I'm writing a small app using padrino and I have 2 views, person and event. I have views and controllers for these and they are working ...
0
votes
0answers
14 views

Zend Partial Loop parameters [duplicate]

Is there a way to pass multiple parameters in a partialloop? For example, I want to be able to use variables in 2 different database tables inside one partialoop. This is my code: Controller: ...
0
votes
0answers
49 views

Persistence and JQuery not working with form fields in AJAX partials

I have 2 issues with forms in AJAX partials. Rails 3.2.8 using the simple_form gem with Twitter Bootstrap and Postgresql. When I use the standard simple_form syntax, the values in my form fields ...
2
votes
4answers
135 views

scala currying/partials to build function filter list

Given the following code: case class Config( addThree: Boolean = true, halve: Boolean = true, timesFive: Boolean = true ) def doOps(num: Integer, config: Config): Integer = { var result: ...
0
votes
1answer
173 views

compass mixin in partial: undefined

In my app.scss I import compass like this: @import "compass/css3"; and I can use all the mixins in app.scss But when I import a partial: @import "structure"; and I want to use a mixins inside ...
1
vote
1answer
76 views

Reusing HTML code with only client side technologies

I am tasked with creating a website using only client side techs such as HTML, CSS and JavaScript. We can't using any server-side tech because the instructor is too lazy to install anything and won't ...
0
votes
2answers
23 views

Rendering partials for Sets

Does the render partial function take any type of collection? I tried passing a Set (@dogs) in and it doesn't seem to work: <%= render(:partial => "dog", :collection => @dogs, :as => ...
0
votes
0answers
66 views

Unable to use RABL to show a collection

I have a RABL template that shows a collection (/api/friends/index.json.rabl): collection @friends node(:uid) { |f| f['uid'] } This works fine. I want to break out the node though into a partial so ...
1
vote
2answers
82 views

Weird Missing Partial error in rails

Hello I am having a weird error in my rails app. ActionView::MissingTemplate (Missing partial foo/bar, application/bar with {:locale=>[:en], :formats=>[:js, "application/ecmascript", ...
1
vote
1answer
266 views

Why is Compass is giving me an import error when trying to import partials

My compass project directory structure looks like this s3z@s3z:~/Desktop/compass_project$ tree . ├── basic.html ├── config.rb ├── css │   ├── ie.css │   ├── print.css │   └── screen.css ├── ...
1
vote
1answer
72 views

Is there a way to load mustache partials automatically in express + consolidate

I'm using express + consolidate + mustache as template engine and I was wondering if there's a way to teach express to automatically load partials with matching filenames which I have not explicitly ...
0
votes
1answer
228 views

Template Partials in Symfony 2

Are there such things as partials in Symfony 2, reusable templates from anywhere, effectively? I have found include http://twig.sensiolabs.org/doc/tags/include.html but this only allows the rendering ...
2
votes
1answer
171 views

rspec view stubs and partials

I'm testing a view with RSpec (2.12 on Rails 3.2.8). I'm using CanCan to conditionally display certain elements on a page. This requires a controller method 'current_user'. In some of my specs I've ...
0
votes
0answers
41 views

Why is this parameter not being sent?

I'm working on a Rails app that includes quite a bit of custom Javascript for "AJAX" style interaction. However, I'm having trouble understanding why adding an additional check_box_tag in a collection ...
0
votes
1answer
151 views

Passing Variable to Partial - Page Displays symbol instead of string

Here is the code in my view to call the partial: <%= render :partial => "/divbox", :locals => { :smush => "Science" } %> and now here is what's in _divbox.html.erb: <div> ...
0
votes
1answer
79 views

Rails: Nested views or partials or..?

I new to Ruby on Rails, and I am coming from Drupal/PHP background. I am trying to do something simple. A "Static" controller for some pages like about us, disclaimer etc. and a "Video" controller ...
1
vote
1answer
2k views

Angular JS and partials

Is it possible to embed html page in another one in angular js? If so, how to do it? Here in their tutorial, the partial is not embedded in the page but it's like different page where you go when ...
2
votes
1answer
515 views

Rails No route matches {:controller=>“devise/products”}

I get the below error on my rails application when I try to login or register (I'm using the Devise GEM for logins). Routing Error No route matches {:controller=>"devise/products"} All the ...
0
votes
1answer
395 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 ...
2
votes
1answer
433 views

Railstutorial: Putting flash messages in partial yields error “undefined method `each' for nil:NilClass”? [duplicate]

Possible Duplicate: Flash Messages in Partials (Rails 3) I am doing Michael Hartl's Railstutorial and listing 7.26 adds flash messages to the application layout: <!DOCTYPE html> ...
0
votes
1answer
67 views

ruby rails print specific elements from multiple partial files residing in a direcotry

I have a directory filled with partials. I'm looking to list ONLY the first h1 tags in each partial. The methods to accomplish this task could probably be modified to grab other elements as well. ...
0
votes
1answer
185 views

Partial, Layout, Template rendering problems

The Situation So when I visit a page, I want to be able to apply a layout to a partial (I have three partials that I want with the same layout). Right now, I am trying to do it with this command: ...
0
votes
2answers
282 views

rails navigation and partial refresh

Thanks for your time! I get some reports data on my hand and I want to present these data on the web. The view of the HTML will be divided into two parts, the left part and the right part. There's a ...
0
votes
3answers
49 views

How to stay MVC and have dynamic partials calls in rails?

I was wondering if it was correct to do the following in the model: get_partial #logic... return "_partial_name1" #more logic return "_partial_name2" #more logic return ...
1
vote
2answers
165 views

undefined method `fragment_for' for nil:NilClass on render partial with cache

I have this piece of code in a partial on some code for rails 2.3.14: <% cache "some_partial_#{some_id}" do %> .... <% end %> Works fine when rendering it in a view but I get: ...
2
votes
1answer
287 views

Passing local variable to partial inside for each loop rails 3

This is my code for rendering the partial (the @parties collection is being generated correctly, I have tested that): <% @parties.each do |party| %> <div class="item"> ...
0
votes
2answers
1k views

zf2 cant render partial navigation

I'm trying to do ` $partial = array(DIR.'/menu.phtml', 'default'); echo $this->navigation()->menu()->setPartial($partial);` and im getting error Fatal error: ...
1
vote
1answer
266 views

Problems reading data from Codeigniter Template Partials, and with controller redirection

I have two unrelated Codeigniter problems: (a) I am trying to redirect a user to the dashboard after logging in successfully. i.e. from controller "auth" to controller "dashboard". For some odd ...
1
vote
2answers
542 views

Rails passing form_for object to partial

How can I pass the form_for object to a partial? <%= form_for @price do |f| %> ... <%= render :partial => "price_page", :object => @price, :as => :f %> ... <% end ...
0
votes
1answer
153 views

Django Loading data independantly in a partial

I have some partial templates which I load in on various pages and sometimes the inclusion of these partials is dynamic, these have their own related models. At present I am passing models via views ...
0
votes
2answers
154 views

Rails Partial Local Variables

I have the following code inside a js.erb file :: var title = $('#kase_listing_title_show_determinator').attr('data-known-title-display'); $('#kase_list_core').fadeOut('slow'); ...
0
votes
2answers
507 views

How do I use different partials and layouts in subfolders?

I need to use a single partial for anything inside my views/admin folder. My setup: /app/views/ + admin + accounts + users + layouts - ...
1
vote
1answer
74 views

How do you update a nested has_one resource?

I seem to have two problems 1) While trying to update my singular nested resource Restaurant has_one Hour and Hour belongs_to Restaurant resources :restaurants do resource :hour end with an ...
0
votes
1answer
541 views

Nested partials in mustache and loading partials from external file

i have one burning question here is it possible to nest a partial in another partial this is what i am trying to do ----------- index.html: ----------- <html> <head> <script ...

1 2 3 4 5