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 2013-01-31 12:41
on 2013-01-31 12:51
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
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.
on 2013-01-31 13:06
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
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
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
Log in with Google account | Log in with Yahoo account
No account? Register here.