Forum: Ruby on Rails Select_tag query

Posted by manoj c. (manoj_c)
on 2013-01-31 12:41
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.
Posted by Colin Law (Guest)
on 2013-01-31 12:51
(Received via mailing list)
On 31 January 2013 11:41, manoj c. <lists@ruby-forum.com> 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
Posted by manoj c. (manoj_c)
on 2013-01-31 12:56
yes i meant select_tag only  like below example
<%=select_tag "people", "<option>David</option>".html_safe%>



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



Thanks
Manoj.
Posted by Colin Law (Guest)
on 2013-01-31 13:06
(Received via mailing list)
On 31 January 2013 11:56, manoj c. <lists@ruby-forum.com> wrote:
> yes i meant select_tag only  like below example
> <%=select_tag "people", "<option>David</option>".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
Posted by manoj c. (manoj_c)
on 2013-01-31 13:14
Colin Law wrote in post #1094550:
> On 31 January 2013 11:56, manoj c. <lists@ruby-forum.com> wrote:
>> yes i meant select_tag only  like below example
>> <%=select_tag "people", "<option>David</option>".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

:( ok its a need now as to do some operation in ajax
Posted by manoj c. (manoj_c)
on 2013-02-08 08:10
manoj c. wrote in post #1094553:
> Colin Law wrote in post #1094550:
>> On 31 January 2013 11:56, manoj c. <lists@ruby-forum.com> wrote:
>>> yes i meant select_tag only  like below example
>>> <%=select_tag "people", "<option>David</option>".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
>
> :( 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", 
"<option>David</option>".html_safe,{:name=>{'sample'}}%>
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.