On Jul 9, 1:17 pm, JannaB <[email protected]> wrote:
> I have a partial that has a button_to_remote on it wherein a method in
> my controller is appropriately executed. In the same partial, but not
> in any <form> I have a select box with the id of "notesboxselect."
>
> Is there any way I can pass the text of what is in this select box, to
> the method in my controller called by the button_to_remote? Thanks,
> Janna B

Sounds like the easiest option here would be the :submit  option of
the various *_remote helpers

Fred
>
> <div id="notesdiv"  style="float: right;">
> Notes: <SELECT name="notesboxselect" id="notesboxselect" style="width:
> 350px; onKeyDown="fnKeyDownHandler(this, event);"
> onKeyUp="fnKeyUpHandler_A(this, event); return false;" onKeyPress =
> "return fnKeyPressHandler_A(this, event);"  onChange="fnChangeHandler_A
> (this, event);">
>   <OPTION value="" style="COLOR:#ff0000;BACKGROUND-COLOR:#ffff00;"></
> OPTION>
>   <option>Subrata</option>
>   <option>Chakrabarty</option>
>   <option>Tiger</option>
>   <option>Software</option>
>   <option>India</option>
> </SELECT>
> </div>
>
> <%=button_to_remote "Manual Up",
>    :url => { :action => "manup" },
>    :update => "insideuplog"
> %>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to