Select_tag query

Hi anybody please give me example to write select_tag with id, name and
options,
:note => here id and name of my select tag are different.

Regards and Thanks in advance
Manoj.

On 31 January 2013 11:41, manoj c. [email protected] wrote:

Hi anybody please give me example to write select_tag with id, name and
options,
:note => here id and name of my select tag are different.

First have a look at the docs and then come back with your best atempt
and explain what does not work about it.
However, are you sure you want to use select_tag rather than using
form_for and f.select? There are occasions when using form_tag and
select_tag is appropriate but if possible then use form_for.

If you have not already done so then work right through a tutorial
such as railstutorial.org which is free to use online and will show
you the basics of rails.

Colin

yes i meant select_tag only like below example
<%=select_tag “people”, “David”.html_safe%>

But here name and id of select_tag is same(people), i want to know how
to give it seprately

Thanks
Manoj.

On 31 January 2013 11:56, manoj c. [email protected] wrote:

yes i meant select_tag only like below example
<%=select_tag “people”, “David”.html_safe%>

But here name and id of select_tag is same(people), i want to know how
to give it seprately

OK, I understand. I don’t know of a way to do that. Why do you need
it?

Colin

Colin L. wrote in post #1094550:

On 31 January 2013 11:56, manoj c. [email protected] wrote:

yes i meant select_tag only like below example
<%=select_tag “people”, “David”.html_safe%>

But here name and id of select_tag is same(people), i want to know how
to give it seprately

OK, I understand. I don’t know of a way to do that. Why do you need
it?

Colin

:frowning: ok its a need now as to do some operation in ajax

manoj c. wrote in post #1094553:

Colin L. wrote in post #1094550:

On 31 January 2013 11:56, manoj c. [email protected] wrote:

yes i meant select_tag only like below example
<%=select_tag “people”, “David”.html_safe%>

But here name and id of select_tag is same(people), i want to know how
to give it seprately

OK, I understand. I don’t know of a way to do that. Why do you need
it?

Colin

:frowning: ok its a need now as to do some operation in ajax

Hi colin,
we can name to select _tag in rails 3 like,
<%=select_tag “people”,
“David”.html_safe,{:name=>{‘sample’}}%>