« Return to Thread: button_to_remote and control values

Re: button_to_remote and control values

by Frederick Cheung-2 :: Rate this Message:

Reply to Author | View in Thread




On Jul 9, 1:17 pm, JannaB <mistressja...@...> 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 rubyonrails-talk@...
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

 « Return to Thread: button_to_remote and control values