Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
427 views

Radio Button won't work in internet explorer but works fine in firefox

I have HTML code like so: function toggle_action(type) { var tabs = document.getElementsByName("action_tab") for(var i = 0 ; i < tabs.length; i++){ //alert(" i = " + i + " length=" + ...
3
votes
1answer
582 views

Rendering a variable with erb

I've got the following problem: I have rhtml (html minced together with ruby inside <% %> and <%= %> tags) stored in a database which I want to render. The information is acquired through a ...
3
votes
4answers
672 views

How to access html request parameters for a .rhtml page served by webrick?

I'm using webrick (the built-in ruby webserver) to serve .rhtml files (html with ruby code embedded --like jsp). It works fine, but I can't figure out how to access parameters (e.g. ...
1
vote
1answer
50 views

2 User-defined classes for 1 model in Rails

Is it possible to create one model that stands for two diferent objects? for example: I have a blog, on wich, i will publish articles on pure text and screencasts with only video. With that in ...
1
vote
2answers
359 views

RHTML displaying HTML tags on output

I have an RHTML view in Rails, where the output is coming from my MongoDB collection. The data is outputted correctly using an iteration block, but whenever I try and have HTML tags in my database, ...
1
vote
5answers
229 views

How do can I have a dropdown list(select HTML) where i want to have one of the options where i allow the user to enter a user specif entery?

I want to have a drop down menu where a user can select from several predefined options but i also want to give him the option of inserting a user specific value, i was thinking having one of the ...
1
vote
1answer
284 views

how to configure tomcat to handle rhtml pages using jruby?

How can I configure tomcat to handle .rhtml pages with jruby? I guess I should mess around with the web.xml file, but I don't know how... (ideally, without rails, just the necessary stuff to use erb ...
0
votes
1answer
53 views

Count how many methods are in a method?

So if there are two methods: def foo method1 method2 end How could one check to see if all of these 'method1/method2' have been executed in the method themselves? How could the amount of ...
0
votes
1answer
39 views

ROR + !map:HashWithIndifferentAccess value convert and display at rhtml

From mysql database I got params in this format. Now I am unable to access this data. Please help me out. I have taken this value in variable. Code : @text = --- !map:HashWithIndifferentAccess ...
0
votes
0answers
36 views

Running ERB / RHTML pages from a mamp configuration OSX

Hi I'm trying to have my MAMP configuration on OSX accept and parse .rhtml files correctly. I have tried adding AddType application/x-httpd-eruby .rhtml Action application/x-httpd-eruby ...
0
votes
1answer
56 views

Mongrel: how to process erb in .rhtml file

I am trying to serve up static content for some web development, with a few lines of erb to simulate what the real server will do. I already did this with WEBrick here: ...
0
votes
2answers
154 views

Getting a value from Javascript on Ruby

<td class="run_time"><%= l.text_field :run_time, :class => "line_item_run_time" %></td> Hello. I have rhtml code, l.text_field :run_time, has a value in its textbox that I ...
0
votes
0answers
164 views

Getting values from variables or functions from Javascript in Ruby on Rails (RoR)

enter code here<tr class="labour line_item"> <td class="description"> <%= l.hidden_field :id unless l.object.new_record? %> <%= l.hidden_field :_destroy, :class => ...
0
votes
1answer
99 views

Converting .rhtml views to .html.erb, etc

In migrating an old Rails app to 2.3.10, I ran across this blog post that has a nice rake task to convert .rhtml files to .html.erb, .rjs to .js.rjs, .haml to .html.haml, etc. However, when I ran it I ...
0
votes
0answers
106 views

Rails: IE suddenly not allowing cross-site document.write in Javascript?

Good morning all, Our site has several affiliates that use a javascript widget to display the latest content available in an ad space. It's all javascript powered. The insert the script in the ...
0
votes
1answer
111 views

RHTML to string - rails

In my rails application my models have a to_html method. This method is called in one of the views so the model's attributes can be displayed properly regardless of their classes (because all of my ...
0
votes
2answers
265 views

adding value of input box to URL as a param after a button is pressed?

I have one input field and 2 buttons, each button performs a different function. i want one of the buttons to take the value of the input field and add it to a specified Url (as a param) that button ...
0
votes
4answers
62 views

Updating webpage widget without changing code?

HI I would like to have latest news/updates in the homepage of my website but i don't want to have to change the HTML code every time i want add a new news line or make a change, is there anyway i ...
0
votes
1answer
27 views

Error when following RoR Video

I keep getting this error compile error /Users/dean/src/carolian/app/views/layouts/events.html.erb:10: syntax error, unexpected ',', expecting ')' ...
0
votes
2answers
82 views

How do I use a nested attribute with a form_for 's select method?

We have a user model which :has_one detail. In a form_for a user, I want a drop-down to select the user's details' time_zone. I've tried <% form_for @user do |f| %> ... user stuff ... ...
0
votes
1answer
191 views

Simple question about an if block in Ruby on Rails

I am trying to tell ruby to not run a block of html and ruby if no active record exists in the database. Below is the code I was trying to run conditions on. <% if @statemant.comments.exists?() do ...
0
votes
6answers
356 views

How to output text in rthml without <%=variable%>

I've been looking around for a solution to this question for the last couple of days. It's a simple annoyance, but I hate not knowing how to do things... Environment: Ruby, Rails, rhtml The ...
0
votes
2answers
745 views

What are some tips for debugging Ruby erb files?

Currently, when I get an error on an erb template (for use with HTTPServer/cgi) I do the following: If it's a small change, revert, save and retest. For a large change or new file, delete or comment ...