Button_to_remote and control values

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 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

Notes: Subrata Chakrabarty Tiger Software India

<%=button_to_remote “Manual Up”,
:url => { :action => “manup” },
:update => “insideuplog”
%>

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 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

On Thu, 2009-07-09 at 04:17 -0700, JannaB wrote:

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

button_to_remote takes the same options as link_to_remote. I believe
the following will do what you want.

<%=button_to_remote “Manual Up”,
:url => { :action => “manup” },
:submit => “notesdiv”

Fred, you are SO the man. How do you KNOW all this stuff??? If I work
with this for 5 years I won’t know what you know. -Janna B.

On Jul 9, 9:56 am, Frederick C. [email protected]