Displaying 20 results from an estimated 8000 matches similar to: "Partials from a master layout?"
2006 Apr 22
4
How to supress field name in error message?
Hi
How do I supress the reporting of a field name in the full error
message? I want the error to be associated with the field so that the
.fieldWithErrors class is applied to the field but I don''t want it to
add the field name to the actual error message.
For example:
errors.add("occurs_on", "The date can''t be today!") unless occurs_on
!= Date.today
I
2006 May 21
3
Where to put partials called from the application layout
Hello,
My main application layout, app/views/layout/application.rhtml looks
like this:
something
render partial_1
something else
render partial_2
something else
render partial_3
The partials are not really doing anything, i use them to keep the
layout modular (i.e . to have ~30 lines instead of 200). Now, the
question is where to put _partial_1.rhtml, _partial_2.rhtml,
_partial_3.rhtml.
If i am
2006 Apr 12
4
CSS and Javascript with partials and layouts
Hi,
I''m developing an application that uses a layout called main on every
page. Most of the individual pages are represented with a single partial
template, but there are several pages that are composed of multiple
partials.
My main layout looks something like this:
Code:
<html>
<head>
<title><%= @title %></title>
<%= stylesheet_link_tag
2006 Jul 05
10
rake migrate RAILS_ENV="production"
On the wiki it says to migrate your DB to production, you can run:
rake migrate RAILS_ENV="production"
This is taken from:
http://wiki.rubyonrails.com/rails/pages/UnderstandingMigrations
My database is set up with correct MySQL permissions granted and the
database.yml is pointing at it. I get no errors when I run it, but
equally my production database does not change at all.
2006 Jun 22
4
rendering partials in layouts?
Hello all,
Forgive me if this is a really stupid question. How do you render
partials in a layout? It''s probably way easier than i believe it to be.
thanks!
--
Posted via http://www.ruby-forum.com/.
2011 May 21
2
How do you create a sub-layout or a partial that wraps a lot of custom html?
Basically I''d like to create a layout inside of a layout using erb.
Something like this:
<%= render :partial => ''support'' do %>
<div id="helpDocumentView">
<h3><%= @help_document.question %></h3>
<%= @help_document.content %>
<div id="helpDocumentHelpful" data-help-document-id="<%=
2006 Nov 04
1
Partials shared between multiple controllers
(Just getting started w rails, web app dev for a long time...)
I have some partials that are common across multiple controllers. They''re
not universal, so they don''t belong to be part of these controllers''
layouts.
It appears that I can put them at the root of /views/, and render them using
a relative path, like so:
<%= render :partial => "./footer"
2006 Mar 14
5
Best way to use partial rendering in global layout
I have a global layout in application.rhtml and I''d like to render a
partial template within it.
Currently, I have this:
<%= render (:partial => ''side_nav'') %>
but it seems to be looking in the controller specific view directory.
What is the best way to do handle controller - global partial rendering?
Wes
--
Posted via http://www.ruby-forum.com/.
2006 Jan 30
5
Multiple ajax calls
This is slightly OT for which I apologise in advance, but I was
wondering if anyone here has had any problems when making multiple
ajax calls at the same time. I''m working on a large Intranet
application which makes heavy use of ajax calls and the bugs are
flying in from the testers that if they repeatedly click on a link
that makes an ajax call then Internet Explorer can fall
2015 Mar 17
2
Asterisk only registering at one provider
Hey,
I am running default Asterisk 11.16.0 on a FreeBSD-Machine.
I need to register to several other SIP-Services (actually 3):
short sip.conf
register => XX at a
register => XX at b
register => XX at c
If I remember correctly this worked quite well, but I now checked the
system again and it is only obeying the first register statement.
"sip show registry" only reports the
2006 Apr 28
4
.times not behaving as I''d expect
I''m using prototype 1.4.0 in a big web application I''ve been working
on for months and today a bug was raised by one of our testers. After
investigation it turns out that something done 0 times will actually
fire once. So, for example, if I had
(0).times( function(i) { alert(i); } );
it''d fire once rather than not at all. Is this a bug in prototype or
the
2006 Jun 21
11
executive: "is rails secure?"
Yesterday, I was doing a dog-and-pony for the head of the company that
I work for.
He asked, "Is this (a rails application) secure?"
I said, "It''s as secure as anything else on the web is," and proceeded
to talk about how the data was protected, how we weren''t saving
anything that''s worth protecting, and so on.
I''d like to have a better
2006 Jun 30
4
Posting error: Ruby On Rails mailing list archieve
You do not have permission to post to group railinglist. You may need to join
the group before being allowed to post, or this group may not be open to
posting.
Visit http://groups.google.com/group/railinglist/about to join or learn more about who
is allowed to post to the group.
Help on using Google Groups is also available at:
http://groups.google.com/support
-------------- next part
2006 Jul 11
8
Stop updated_at from auto updating?
Hi
Is there any way to temporarily stop the updated_at field from being
updated when a record is modified with ActiveRecord?
I have a date field which is keeping track of when the record data was
last checked by my application and my app manually updates it, of course
when I do this the updated_at field is also touched making it fairly
useless for finding out when the actual data was changed
2013 Jan 02
2
Read many cvs files
Hello R helpers,
I would like to automate this code for many files of the same type. But I
don´t know how to make it. In particular, i don´t know how to read many
files each one as an r object with the name of the file. Then a for loop
would be sufficient, right?
Many thanks and a happy new year.
Dominic
datos <- read.table('global2001.csv',head=T,sep=';',stringsAsFactors=F)
2009 Feb 11
1
Ruby on Rails: Talk | Google Groups
This is more an architectural question....
I am looking to create a domain that sells widgets (as an example)
widgets.com
Now I have three sales reps, that each sell different kinds of
widgets, and do not need to know about each other.
larry.widget.com
moe.widget.com
curley.widget.com
I don''t want to repeat myself (of course!) with the shopping cart
logic or the transactional
2006 Jun 24
3
Staying DRY -- can views share partials?
Let''s say I have a "main" controller/view and a "sub" controller/view.
If I have defined a partial in "main" for the site header
(_site_header.rhtml) can I share it with "sub" or does "sub" have to
duplicate it, use a symbolic link to the file, or convert the cool
partial into an ugly helper?
It would be nice to have a shared placed
2008 Mar 31
2
Rails and Partials
Excuse my ignorance on partials but.....
I am trying to use partials to create a uniform display box built with
html tables. The only way I have thought about accomplishing this is to
create two partials:
_start_box.erb
----------------
<table id="box" width="<%= width %>"><tr><th><%= h(label_text)
%></th></tr><tr><td>
2006 Apr 15
1
Right way to pass conditionals to partials
Hi All,
I have some partials that need to be rendered a bit differently
depending on the context. To make matters worse, sometimes these
partials are including other partials, that I''d like to control from the
main template. These partials are templates that look similar in
different contexts, but have different controls depending on where
they''re being rendered. I
2006 Mar 20
1
AJAX in conjunction with partials
All,
Trying to clear up some confusion on my part.
If I make an Ajax call using Ajax.Request and in the controller method
that I call, I do a render (:partial => ''whatever.rhtml''), should I
expect that ''whatever.rhtml'' will be rendered in the browser or not?
Put another way, is it in any way reasonable for me to think that
Ajax.Request + partial render