Displaying 20 results from an estimated 200000 matches similar to: "Simple Email form"
2006 Apr 18
4
IN-PLACE FORM EDITING
Ive been following the rails recipes (great book) and wanted to have a 
larger a text field when editing in place.
The chapter it mentions that I can  "force the InPlaceEditor to create 
either a text ?eld or a <textarea> ?eld, using the :rows option to 
in_place_editor_?eld( ). Then any value greater than 1 will tell 
InPlaceEditor to generate a <textarea>."  It
2006 Jun 26
9
Form Mail
What is the most RoR friendly way of making a form mailer similar to 
this php one?
http://tips-scripts.com/?tip=form_mail#tip
Or is it easier just to use the php with RoR?
-- 
Posted via http://www.ruby-forum.com/.
2006 May 16
5
Google Map problems
I followed the setup from http://cartographer.rubyforge.org/
but keep getting this error -
NoMethodError in Sandbox#map
Showing app/views/layouts/sandbox.rhtml where line #4 raised:
You have a nil object when you didn''t expect it!
You might have expected an instance of Array.
The error occured while evaluating nil.[]
Extracted source (around line #4):
1: <html>
2: <head>
2006 Apr 14
6
Login Generator with Extensible authorisation
I want my web app to have a signup/login generator but have 2 tiers of 
users - normal and premium.  There seems to be lots of login generator 
and engines with scattered tutorials about extensible authorisation and 
Im lost as which is the ''best'' or most ''easy to use'' solution.  Anyone 
had success in this area?
-- 
Posted via http://www.ruby-forum.com/.
2006 Apr 10
1
column.name question....
rHTML is
<% for column in Wizard.content_columns %>
<p>
  <%=h @wizard.send(column.name) %>
</p>
<% end %>
It outputs:
Robs Site
Heading
logo.jpeg
London
------
Bascally 1 line for each column in the database.  How do I edit the
rhtml so I can break up the output?
For instance JUST have ''Robs Site'' display nothing else.  That mysql
column is
2006 May 04
1
Ferret and rails question
Is ferret the best way to implement a search option in your app?
If so what is a best way to do it - the plugin or the wiki tutorial?
-- 
Posted via http://www.ruby-forum.com/.
2006 Jun 14
1
file column validates_format_of
Been manually testing file column with success except it seems to upload 
the file before validating it. Also .pdf files (which shouldn''t even 
validate) crash WEBrick.  What am I missing to solve these problems? 
(apart from a brain!)
validates_presence_of :title, :file
validates_format_of :file, :with => %r{.(gif|jpg|png)$}i,
:message => "File must end with .jpg, .gif or
2006 May 05
1
hows does engines effect the default action mailer?
I installed engines to my app and now my salted login (which is not an 
engine) wont send emails.  Bit confused... :S
-- 
Posted via http://www.ruby-forum.com/.
2006 Jul 18
1
Ajax contact form
http://depot.iamjp.com/contact
Great example of what I need above, I just can''t work out how to turn it 
from a demo to a working contact form!  (yes im dumb)
-- 
Posted via http://www.ruby-forum.com/.
2006 May 16
1
ActionMailer w/o database link (e.g., feedback form)
Hey,
A total noobieQ. Apologies, still learning.
Could anyone point me to examples of a non-database-driven feedback 
form, for instance, a simple e-mail feedback form that takes advantage 
of ActionMailer? (How do I carry a POST through to a ''def'' w/o a 
database connection?)
Thanks!
-- 
Posted via http://www.ruby-forum.com/.
2009 Feb 07
0
Simple form with option to go to advanced form
I have a todo list involving projects and tasks and im using nested
resources. In Projects Show - i list all tasks associated with the
project. I also have a simple "add task" which allows the user to add a
task but only specify the title. Other attributes are set to default
(e.g. due date = None, priority = NA etc).
This form is sent to project_tasks_path i.e. create in Task Controller.
2013 Feb 26
0
FeedbackComputing'13 CFP (one month before deadline)
CALL FOR PAPERS
Feedback Computing 2013 -
The 8th International Workshop on Feedback Computing
San Jose, California, USA, 25 June 2013
Co-hosted with the 2013 USENIX Federated Conferences Week
https://www.usenix.org/conference/feedback13
-----------------------------------------------------------------
IMPORTANT DATES
Paper submissions due: March 29, 2013, 11:59 p.m. PDT
Notification to
2013 Feb 26
0
FeedbackComputing'13 CFP (one month before deadline)
CALL FOR PAPERS
Feedback Computing 2013 -
The 8th International Workshop on Feedback Computing
San Jose, California, USA, 25 June 2013
Co-hosted with the 2013 USENIX Federated Conferences Week
https://www.usenix.org/conference/feedback13
-----------------------------------------------------------------
IMPORTANT DATES
Paper submissions due: March 29, 2013, 11:59 p.m. PDT
Notification to
2006 Jan 17
0
Dynamically creating textbox in form?
Hi,
What I''m trying to hack up is a form that has a portion which would 
allow me to add "any number" of another set of items.
For instance when specifying a product in a table, and this said product 
can have a number of ways which it can be delivered, so I will have a 
"Add additional delivery method" javascript link, which when clicked 
will create an additional
2006 Jul 27
2
setting initial text field values in a form
Hi,
I am trying to create a basic form in which I want one of the fields 
initialized before displaying it.
My code (in a view) is as follows:
<%
  if ( session[:user_id] != nil  )
  then
    logged_in_user = User.find(session[:user_id])
  end
%>
<% form_for :suggestion do |form| %>
<label for="suggestion_title">Topic:</label><br/>
<%=
2006 Mar 24
3
JS validation on a form/submit tag? Like :condition=>...
Hallo -- is there a way anyone know of that I can add a :confirm clause 
to a form submit? Something like:
<%= submit_tag ''commit'', :confirm=>"are you certain?" %>
Does anyone know how to achieve this?
Cheers,
   doug.
-- 
Posted via http://www.ruby-forum.com/.
2006 Apr 14
2
Nested AJAX remote_form in form?
I''d like to achieve something that is better described by the following 
code:
  <%= start_form_tag :action => ''create'' %>
    <%= text_area ''place'', ''description'', :cols => 100, :rows => 4 %>
    <div id="categories">
      <%= form_remote_tag :update => ''categories'',
    
2006 Feb 04
1
Error when using form helper and child objects
Hi,
This is one problem that has gotten me stumped for quite a while. I have 
an Item that has_many :DeliveryMethod, and what I seek to achieve is to 
create a form that''d let me create an Item, as well as its 
DeliveryMethods in 1 single form.
And so I tried something like:
<%= text_field_tag ''Item[DeliveryMethod][price]'',  @Item.DeliveryMethod 
?
2006 Jul 25
1
send mail from a form
Does anyone know the best way to send mail from a form using 
ActionMailer? This would be used as a feedback form.
Thanks.
-- 
Posted via http://www.ruby-forum.com/.
2006 May 24
0
generate mailer question
I''m trying to create a feedback form that will email me the submitted 
feedback but I''m totally confused on how to achieve it.  I can''t seem to 
find any examples and the agile web development section on emails just 
confuses me even more!
So a user types their feedback in the view
the text is captured and sent to the method and emailed to me.
Its easy so why