Tagged Questions
0
votes
1answer
39 views
How to implement a word counter in Rails?
I'm wanting to implement a real-time word counter in a form. So as a user types into the box, a line below the box updates with the correct number of words.
Here is the relevant form code (my views ...
0
votes
2answers
25 views
Use Angular variable in Rails link_to
I'm using Angularjs in parts of my Rails app, which works great. But I'm wondering how to use an Angular value inside a link_to.
Here is my pseudo code:
%table
%tr{"ng-repeat" => ...
1
vote
2answers
46 views
Rails 3.0 undefined local variable when rendering a partial
I'm working with a Rails 3.0.20 app and I'm trying to pass a local variable through a partial and it's displaying 'undefined local variable' I've had a look at the other posts on this issue and ...
0
votes
0answers
27 views
Rails doesnt log tempalte errors in development mode
My Rails 3.2.9-app does not show any specific error information to me on errors in templates! It doesn't matter if I use haml or erb, I am always getting "We're sorry, but something went wrong". In ...
-2
votes
2answers
41 views
Comment model form not working [closed]
i'm learning Rails by doing social app called bloggers. I have problem with my comment model. Comment model is associated with models: post and user.
comments controller:
class CommentsController ...
0
votes
1answer
42 views
Render haml with locals and partials within partials to html file
I need to create some html files and want to use my partials already done to the show view.
I used to do this with markaby, but now i think that with haml the thing will be easier.
I'm trying to do: ...
0
votes
0answers
23 views
Multi update boolean state with checkboxes (Rails 3)
well this problem I'm sure it isn't difficult at all but being new to rails I'm kinda lost.
After watching Railscasts Episode #52, I went on to make my own publish/unpublish list of slides.
So this ...
0
votes
2answers
34 views
div title syntax in haml and also incorporate ruby variable inside it
I have trouble converting HTML syntax into HAML.
I know a <div> class can be simply represented by:
.class-name
But, I want to convert the following syntax into HAML and also incorporate a ...
4
votes
2answers
66 views
Rails NoMethodError for user but db:migrate isn't helping -updated
I am new to rails and I am trying to add a email confirmation upon register. I currently get this error. I tried rake db:migrate but for some reason I cannot get email_activation_token into the user ...
0
votes
1answer
72 views
Infinite scrolling in rails with haml
I'm trying to implement infinite scrolling into my project.
I have do everything as in this howto: https://github.com/amatsuda/kaminari/wiki/How-To:-Create-Infinite-Scrolling-with-jQuery
But it's not ...
0
votes
1answer
66 views
Rails 3: error while passing params to javascript function
I am trying to pass value to the JavaScript function but it gives me the below error on Firebug when I click the anchor tag (plus icon).
What I am trying to do is, on click of a 'plus' sign, I add ...
0
votes
1answer
499 views
Using AngularJS within Haml views of a Rails app
I have a Rails app with Haml views. Now I want to add AngularJS to some parts of the application, but the problem is that the Haml views are rendered server-side and the AngularJS code is not working, ...
0
votes
1answer
60 views
Empty item at end of .each loop because of rails cycle method
I have this list that should show all activities inside a category, and it sort of works but the last element that is displayed is strange. There are 4 activities in the DB for this particular ...
0
votes
1answer
111 views
Jquery Mobile add label to radio buttons controlgroup
I have a form, with four radio buttons, and i can't figure out how to add a label to that radio buttons, something like this
LABEL ........ Radio1Radio2Radio3Radio4
The radio buttons code:
...
0
votes
1answer
36 views
Rails input nested content
I have an submit_tag or input button, however you wanna call it, but I can't get the Text + Font-Awesome icon to work together.
I tryied like this
%input{type: "submit", name: "A", "data-theme" ...
0
votes
0answers
73 views
haml-rails doesn't work in production
I've been working for the last two days (not long enough, it seems) to getting haml-rails to work with this RoR application. The backtrace I'm getting is this:
ActionView::MissingTemplate (Missing ...
0
votes
0answers
41 views
Rails render doesn't find template or XML error
I have a rails 3.2 app and on one of my controllers actions (Edit) I call a helper method, in this helper method I have a call that looks like this:
order_xml = render_to_string :partial => ...
0
votes
1answer
146 views
How to Generate Views for Devise in HAML
This is mine Gemfile
gem 'haml'
group :development do
gem 'hpricot'
gem 'ruby_parser'
end
I then executed the following statements in a terminal/command window:
bundle install
rails generate ...
0
votes
0answers
37 views
Group of radio buttons in different tabs for a HABTM relationship
I have a Profile model with a has_and_belongs_to_many :cloth_sizes and 3 kinds of ClothSize, each kind with different sizes. Is supposed that the profile should be related with one of each kind. The ...
0
votes
1answer
49 views
Nested Models not updating
Using Nested Model Form (revised) Railscast to try to create a page with nested models which can be updated at once. Wikis have many topics, which have many notes.
The problem is, a) The ...
0
votes
1answer
199 views
append and prepend with simple-form and bootstrap
I need to be able to use simple form input tag using a bootstrap append and prepend. I can do it with one easily but not getting them both to work. Is this possible.
here is what I have using haml ...
0
votes
2answers
76 views
Using I18n markdown strings in HAML
I have localised markdown strings in my language file, and I am looking for a cleaner way to do the following in HAML:
#text_for_something
:markdown
#{ t(:text_in_markown) }
Or, equivalently:
...
0
votes
1answer
54 views
concatenated i18n string with variabele in HAML
this is my code
%ul.thumbnails
%li.span3
%header
%h2
= link_to t('homepage.house.link'), houses_path
i have a variabele @country.name. How can i 'add/concatenated' this ...
0
votes
1answer
80 views
jquery collapse all does not work when combined with HAML format
My Exapand All button works fine (collapses and expands) in the following jsfiddle.
http://jsfiddle.net/HqXMN/6/
But the Expand all/Collapse all feature does not work when used in a HAML format.. I ...
0
votes
1answer
95 views
each_with_index not working correct
i want the first element of the each loop to be "active" and wrap it with a active css class. I tried this, but every item is active now. What a i doing wrong?
#myCarousel.carousel.slide
...
0
votes
3answers
78 views
Links are not clickable in Rails 3 and HAML
I have a Rails 3.1 app with HAML and I'm trying to set up the homepage with links to other sites. My Haml code looks like this:
.home-container
%section.news
%a{:href => ...
0
votes
1answer
77 views
display search results in haml syntax
I am new to ruby and am having trouble implementing the view for search in haml syntax.
Here is my controller code for search which works fine
app/controllers/search
def search(text)
...
0
votes
1answer
113 views
Pass Arguments to HAML Partial
Using rails 3.2.11, and whatever the newest version of HAML is, I've been trying to pass a block to a HAML partial. I suppose I could use a variable in the HAML file, and then assign that variable ...
0
votes
2answers
109 views
haml and ruby on rails date of birth date field syntax
SO I have been learning ror and trying out some form examples.
Most of the examples in the web is in erb format and my files are in .haml format. I am trying to a write a static dob field where it ...
2
votes
1answer
41 views
How to escape a comment in haml?
I have the following line containing a regex using RoR in a view (show.html.haml):
- unless @article.content =~ /find(#{image.id})/
The problem is that the regex is not evaluated since it's ...
0
votes
2answers
247 views
Rails and haml, how to add id and class selectors to link_to helper?
I've been looking around how to add an id selector to a link_to helper using haml, is that possible?
a .haml - %a#booked{:href => "index.haml"} Link 1
b .html.erb - booking.html.erb - ...
0
votes
2answers
74 views
Nil object when you didn't expect it for contact form_for
I'm trying to add a contact form for my Rails 3.1.3 application using this tutorial. However at the end when I try to load my contact page, I get the error:
You have a nil object when you didn't ...
0
votes
0answers
54 views
f.label not working with block in haml
I have following haml code
form_for @user_notification_settings_form do |f|
= f.label :follow do
div dummy
But it generates
<label for="user_notification_settings_form_follow">
...
0
votes
1answer
76 views
index.js.haml is not loading
I am using inherited_resources and in my controller I specified respond_to :js, :only => [:index].
But when I trigger an oncange event for dropdown a ajax url that hits the controller index method ...
0
votes
1answer
97 views
Heroku does not read application.html.haml
I got a simple 'Contact Us' site that local server displays correctly.
It has and application.html.haml inside views/layouts with a small header and footer. This 'yield' a container with the contact ...
0
votes
0answers
364 views
Alternate bootstrap table row coloring doesn't work
I'm trying to color some rows in a rails table based on a single attribute. I'm only specifying that so people don't get confused, thinking I'm trying to alternate the colors in my table. That's not ...
0
votes
0answers
133 views
Duplicated background modal window (bootstrap)
I have some modal windows in my Rails project. And I have a problem with background.
My code:
= link_to @user_name, '#private_data_modal', :id => "a_choose_name", "data-toggle"=>"modal"
...
0
votes
0answers
33 views
Use Haml in rails plugin
I have made a mountable plugin using haml as template. I have added haml and haml-rails in my gemspec.
I use it in a project, I add it in my Gemfile as follows:
gem 'my_plugin', :git=> ...
0
votes
1answer
72 views
Self-closing tags can't have content?
I am trying to use mailer layout for my emails,
I have put notifications_mailer.html.erb in the layouts folder, and I have a view for the email migration_message.html.haml
But why would I have this ...
1
vote
2answers
108 views
HAML and link_to rails
I am new to HAML. I am trying to create a link using haml which looks like the this
=link_to("Last updated on<%=@last_data.date_from.month ...
1
vote
1answer
107 views
Rails flash messages with HAML
i started learn HAML: and i can't translate flash block to HAML:
<% flash.each do |key, value| %>
<div class="alert alert-<%= key %>">
<button type="button" class="close" ...
0
votes
1answer
135 views
How to combine the default value, null value and the value of item
I have an argument year in my model. This parameter defaults to 0, if the parameter is not in a form that is inserted into the database 0 (not working with nil).
A text_field is rendered when ...
1
vote
1answer
87 views
Why I see '0' when I use current_user.has_role?
In view I set validation for roles (gems cancan and rolify).
As example in HAML
=if current_user.has_role? :admin
= link_to current_user.name, '#'
Generated HTML
<a ...
1
vote
1answer
60 views
Rails - Why is HAML showing the full hash?
View:
!!!
%html
%head
%title= full_title(yield(:title))
=stylesheet_link_tag "application", media: "all"
=javascript_include_tag "application"
=csrf_meta_tags
=render ...
1
vote
1answer
45 views
How to customize select_tag?
I want to set background-colors in my select_tag in Rails application
My current haml code
= select_tag :color_id, options_from_collection_for_select(@colors, "id", "name")
generated
<label ...
0
votes
0answers
32 views
Rails views stored in db and rendered properly
I'm creating a simple CMS where there is a Page model that has a content field that stores the HAML code to be rendered for a page. So I know how to store the HAML and then render it, but I'd also ...
2
votes
1answer
1k views
Haml -Illegal nesting: nesting within plain text is illegal
I am facing a weird error in my code while using HAML where my code is working on my Local Machine but when I am deploying it I am getting the following error
ActionView::Template::Error (Illegal ...
0
votes
1answer
124 views
How do you properly include a conditional css file for IE in Rails 3.1+ (asset pipeline) and haml?
The solutions I've searched online do not work. I currently have rails 3.1 and haml installed. The ie.css file is located under app/assets/stylesheets right next to the application.css.
I tried the ...
0
votes
1answer
206 views
undefined method `map'
I am trying to parse db-record data in to my haml-template file for filtering purposes.(isotope jquery)
House model
def features_to_html_class
"#{(guests + bedrooms + type + ...
1
vote
1answer
226 views
Convert from haml to erb
I try to convert the code from haml to erb but I'm getting stuck and don't know why.
Here is the original code I want to convert: ...


