Tagged Questions
1
vote
1answer
28 views
Rails form texteditor for haml language
Are there any good texteditor's for haml language, for example as jce in joomla etc?
Now i use ckeditor for my form:
= form_for [:admin, @va] do |f|
- if @va.errors.messages.values.present?
...
-1
votes
0answers
24 views
Sass only converting to .sass, not .scss using prompt sass-convert [closed]
So I'm on Windows and working from standard cmd prompt, though the issue seems like it would be applicable to any POSIX prompt as well. The language for either with sass is identical.
So the ...
1
vote
2answers
47 views
HAML putting a partial inside previous div
I'm using a layout for the landing area of my site, and on that I'm using the devise_controller? method to add #login & .span.offset4 that tell the Devise views to move to the middle and set a ...
0
votes
0answers
28 views
Having touble creating HAML Templates using Gurad and Guard-HAML
I am trying use guard-haml but for the life of me I can't seem to get the templating to work.
This is how I am setting up guard-HAML in guardfile:
group :development do
## HAML
guard 'haml', ...
1
vote
4answers
56 views
Use picture as submit button
I would like to make my submit button for my login page be a picture instead of the grey button. When I use css to do this I get the button on top of the picture. Is there a way to use
= submit_tag ...
0
votes
1answer
46 views
How to escape HTML in haml form?
When i do edit,my haml form renders with the &ersand; value in the text field,I set to escape_html true,But still it renders the value with &ersand; What mistake I have done here. Is ...
0
votes
1answer
50 views
HAML Twitter Bootstrap Tabs Doesn't Work Properly Ruby on Rails
I am having trouble with twitter bootstrap tabs in (HAML) ruby on rails. The tabs are showing up but the content doesn't change when I click on the respective tabs. The statements below are also ...
1
vote
1answer
74 views
CSS only shows correctly on index page. Ruby On Rails
I am new to Ruby On Rails and am trying to get a css template to work for a project. It works fine on my index page but on every other page it doesn't seem to be getting the complete layout from the ...
-3
votes
1answer
51 views
Rails generates html, but it wont work [closed]
This one is really freaky and I'm sorry in advance if this is a basic question.
What I'm trying to do is put a table header with a link to order the table by that column. I'm using Haml on Rails. This ...
0
votes
1answer
40 views
Extracting plain text from an html content variable in HAML
I'm trying to extract the plain text from some HTML content in HAML. For example, if I have this HTML in a variable called message.content:
Hi, this is a <strong>test</strong> message!
...
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
33 views
I want to use %b.caret as the text of an anchor
Using haml I am trying to generate following HTML
<a class='dropdown-toggle' data-toggle='dropdown' href='#'>Account <b class="caret"></b></a>
I have tried the following:
...
1
vote
1answer
37 views
Dynamic table with data attributes
I have a dynamically created table with the row and column numbers stored as data attributes in each cell:
%table
- (1..3).each do |row|
%tr
- (1..3).each do |column|
...
1
vote
2answers
142 views
Sinatra & HAML: auto-escape/convert unsafe HTML characters for a whole template?
I've got a little sinatra app I'm using to run a basic website. The content for said site is being provided by a client, and most of it is coming out of PDFs. Since I'd rather not have to manually ...
3
votes
1answer
112 views
Sub-headers in Tables: Accessibility and Templating
This is hard to explain, so here is a pen where all the examples can be seen.
Which is better for accessibility?
Option 1
<table>
<thead>
<tr>
<th>Thing ...
0
votes
1answer
79 views
Increase the width of div ignoring the width of container-parent (and use x scrollbar)
Let me explain with madskillz.
The current status
I'm doing a gallery which is formed by array of urls.
Haml code:
%section#content
%form
%fieldset
#gallery
%i.gallery_title ...
0
votes
2answers
50 views
how to get rid of bullet in haml ul
so here's an ul in haml that I have
.content
.testing
.testing-ul2
%ul
%li
a
b
c
.testing-ul2
%ul
%li
d
...
0
votes
1answer
72 views
Haml: for whom is it? [closed]
In professional development different people make code for web applications and HTML for views. First are programmers and second are HTML markup developer with basic programming skills, but with good ...
0
votes
2answers
38 views
Running a haml file
I have a rails app, that has a haml file in the view. I would like to see the haml file in the browser, what is the correct way of doing this?
I have started up rails s
using http://localhost:3000
...
1
vote
1answer
55 views
How to make the check box checked by default when using check_box_tag?
= form_tag movies_path, :id => 'ratings_form', :method => :get do
Include:
- @all_ratings.each do |rating|
= rating
- is_checked = (!@selected_ratings.nil? && ...
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
0answers
18 views
phamp php interprer for haml not working correctly
I am using http://code.google.com/p/phamlp/
However when I try to write this haml code
#mydiv.myclass
I get
<div id="mydiv">.myclass</div>
Is this a phamlp library bug or am I ...
0
votes
0answers
163 views
html template haml/jade with PHP?
I used node.js with jade, but I have to change it into PHP.
Is it possible to use haml or jade template with PHP framework?
or
Is there any other similar html template system?
0
votes
4answers
76 views
Align input and button on one line
I have such table part:
<td>
<form accept-charset="UTF-8" action="/line_items" method="post">
<input class="qnt_to_cart2" id="110040Q" name="cart_quantity" ...
1
vote
1answer
101 views
Html pattern not null and not negative
How can i write such pattern:
1) Not negative: so only numbers from 1 to 999
2) Null Can't be first char
3) Non empty field
For example:
01, , -1, 1500, abc, etc - are false
Now i have only ...
0
votes
2answers
73 views
Why is HAML swapping tag positions?
This HAML (with chained helpers):
- haml_tag :a, helper_method_1(local1, local2).merge( helper_method_2 local3, local4 ) do
%div{ style: helper_method_3(local5, local6) }
%span= local7
...
1
vote
1answer
148 views
Every Other Row | Nth column of table in Haml
Trying to make a table in HAML, and I have the following:
%table
%tbody
%tr
%th{:rowspan => 2} Name
%th{:class => "leftBorderS", :colspan => 5} Monday
%th{:class ...
2
votes
1answer
140 views
Merged Table Headers in Haml
I am trying to accomplish this in haml:
How do I adjust the following to have merged cell headers to accomplish the same as the excel picture:
%table
%tbody
%tr
%th Name
%th Sunday ...
0
votes
1answer
49 views
On every page footer margin is different
I have web page, and i must to stick footer on bottom of page. I have code for you here:
1) http://jsfiddle.net/6P3Ag/
2) http://jsfiddle.net/bmzgp/
Also please see preview on jsfiddle, like ...
2
votes
1answer
55 views
Multiple form_fors on page is causing issues with the _method attribute
Rewrite
I have 2 models. App and Conversation.
An app contains multiple conversations
resources :apps do
resources :conversations
end
I have a single view which with 2 forms on them using the ...
-1
votes
1answer
72 views
Tie a select element to a input element in ruby/haml
Have a ruby hash @vars
Would like a select control to display the keys, and an input element to display the value of the selected key.
Easy enough to do the first part, but I'm at a loss on how to ...
1
vote
1answer
132 views
How to use Haml haml_tag method with custom attributes?
I want to reproduce the haml code below by using the haml_tag method.
= %img { alt:'Hi' , src: 'hi.jpg' }
Can anyone help?
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
108 views
Having trouble nesting a link within a link in HAML
I'm having trouble with HAML nesting a link within another link. The indentation is completely correct in the HAML, but the HTML is being output very wrong.
The original HAML code:
.item
=link_to ...
0
votes
1answer
171 views
Bootstrap-alert dismisses parent container
Bootstrap-alert plugin works really strange. I have following haml structure:
.flashes
.message.fade.in
%p Hi there!
And some coffee:
jQuery ->
$('.flashes').on 'click', '.message', ...
2
votes
2answers
315 views
rails form_tag _path parameters
Although the question at 'Passing Multiple Parameters in a form_tag' provides some information regarding how one can pass parameters within a form_tag the poster ultimately decided to pursue a ...
0
votes
1answer
116 views
Loop using Ruby within :javascript Haml definition
I have a JSON to declare in :javascript and I am not familiar with Ruby. The JSON is below:
:javascript
var collections = {
feed: [{'label': 'All', 'url': 'All', 'isSelected': false}]
};
...
0
votes
2answers
74 views
input type = button access link_to
I have the following haml code
%input{type: "button", value: "Finish"}= link_to "", stop_time_entry_path(time_entry), remote: true
How can i access stop_time_entries_path(time_entry) when I click ...
0
votes
2answers
115 views
Haml to Html, how to assign the right value to a parent tag?
I am new to web dev. Below i have a code in haml
%th
%a#title_header
%a{:th => ("hilite" if @sort == "title")}= link_to 'Movie Title', :sort => "title"
which gives me the ...
2
votes
1answer
556 views
How to check all checkboxes when the user visits the page for the first time?
I want the checkboxes to be checked when the user visits the page for the first time.
This file is app/views/movies/index.html.haml
%h1 All Movies
= form_tag movies_path, :method => :get, :id ...
4
votes
3answers
2k views
How to check a check box in Haml using check_box_tag
Can someone tell me how to set these check boxes to checked? I'm sure it's simple, but after an hour of trying i think I need to ask! Thanks!
= form_tag movies_path, :id => 'ratings_form', :method ...
1
vote
3answers
142 views
Font color of list item doesn't inherit correctly from CSS
I have the following headermenu:
%div.header
%div.span-25
= link_to logo, root_path
%div.span-25
%div.headermenu
%ul
- if current_page?(root_path)
%li.currentmenu
...
1
vote
0answers
51 views
Select tag rails to follow key punched for numerics
I have a select tag for time.
= select_tag "depart-minute", options_for_select('00'..'59', dep_minute), :include_blank => true'
When this select field is on focus and i press 5 two time, it ...
10
votes
2answers
1k views
Conditional HTML tag in HAML
How would I format HAML to output a style similar to the conditional HTML tags used for cross-browser targeting?
<!doctype html>
<!--[if lt IE 8]> <html class="no-js ie7 oldie" ...
2
votes
2answers
122 views
Can anyone point me to a modular static HTML authoring/preprocessing framework, a la SASS? Or more accurately, HAML with includes?
I find myself doing a lot of work here and there (both for myself and on contract) to develop small, static websites where the use of dynamic tools like PHP frameworks or Rails would be totally ...
1
vote
2answers
975 views
Automate Haml & Sass with Sublime Text 2 for Windows
I am a front-end guy using Windows for design and html/js/css coding. My work is separate from the back-end guy using .NET. I am also new to Haml/Sass thing as well as Ruby. And definitely not using ...
0
votes
4answers
99 views
Rails - how to add an html attribute to a layout tag
This is how my application layout page is looking (here is a part of it)
%html
%body
#main
.content
= yield
Sometimes (not always) I need to add "id" attribute to .content div. ...
1
vote
1answer
96 views
Omitting surrounding <p> being generated from HAML
Have got the following HAML code, combined with Markdown:
%h2.slogan.align-center
:markdown
No more big words. Enough of the abbreviations.
**Project management for the rest of us.**
...
1
vote
1answer
212 views
Rails - HAML element attributes are wrapped with single quotes
I have a Rails website and currently some of my tag attributes are generated with single quotes. I'm not sure if that will result to invalid markup but based validator.w3.org, it's valid and runs on ...
3
votes
3answers
129 views
Rails/Haml: adding a parentclass every n iteration
I have a photo gallery that is organised like this:
.container
%li
%a{src: image.src}
%li
%a{src: image.src}
%li
%a{src: image.src}
.container
%li
%a{src: image.src}
%li
...

