|
Loading...
|
prototype-scriptaculous@googlegroups.com
[Prev] Thread [Next] | [Prev] Date [Next]
Re: [Proto-Scripty] Variables in $$() ????? David Behler Sat Sep 25 06:00:20 2010
What about this:
$$("input[type=radio][name='type'][value='" + selectThis + "']")
?
Am 25.09.2010 14:41, schrieb Phil Petree:
Jonathan,Thanks for that but like most things in the prototype documentation, it lacks the type of clarity that I can understand. IOW, I can read the documentation, scratch my head and say huh? I leave that documentation thinking "this might be what I need but have no clue as to how to implement that to solve my problem." Which is exactly what happened here... OK, I need to use templates to somehow sprintf the string constant into a direct value but huh?On Sat, Sep 25, 2010 at 7:59 AM, Jonathan Rosenberg <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote:You're passing a string constant to $$ "input[type=radio][name='type'][value=selectThis]")'selectThis' will not be evaluated, as you seem to be expecting. Have a loook at Tenplate to do what you want:http://www.prototypejs.org/api/template -- Jonathan Rosenberg Founder & Executive Director Tabby's Place http://www.tabbysplace.org <http://www.tabbysplace.org/> -----Original Message----- *From:* [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> [mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>] *On Behalf Of *Phil Petree *Sent:* Saturday, September 25, 2010 7:46 AM *To:* [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> *Subject:* [Proto-Scripty] Variables in $$() ????? I've hit this in two seperate places and not exactly sure why... (I think its the 18 hour days, 7 days a week... <g>) If "value" is hard set with '3' the following works: $$("input[type=radio][name='type'][value='3']")[0].writeAttribute("checked", "checked"); However, if we use a variable (selectThis) and assign it "3" it does not work. var selectThis; selectThis = '3'; $$("input[type=radio][name='type'][value=selectThis]")[0].writeAttribute("checked", "checked"); Type casting doesn't work either: var selectThis; selectThis = String('3'); $$("input[type=radio][name='type'][value=selectThis]")[0].writeAttribute("checked", "checked"); I'm having the same problem here too (compare o.value== 'GA' and the select gets set to GA): selectThis = 'GA' $$('select#ajstate option').each(function(o){ if(o.value==selectThis){o.selected = true;$break;} }); What am I missing here?-- You received this message because you are subscribed to theGoogle Groups "Prototype & script.aculo.us <http://script.aculo.us/>" group. To post to this group, send email to [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>. To unsubscribe from this group, send email to [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en.-- You received this message because you are subscribed to the GoogleGroups "Prototype & script.aculo.us <http://script.aculo.us/>" group. To post to this group, send email to [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>. To unsubscribe from this group, send email to [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en. --You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [EMAIL PROTECTED] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en.
-- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [EMAIL PROTECTED] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en.
- [Proto-Scripty] Variables in $$() ????? Phil Petree 2010/09/25
- RE: [Proto-Scripty] Variables in $$() ????? Jonathan Rosenberg 2010/09/25
- Re: [Proto-Scripty] Variables in $$() ????? Phil Petree 2010/09/25
- Re: [Proto-Scripty] Variables in $$() ????? David Behler 2010/09/25 <=
- Re: [Proto-Scripty] Variables in $$() ????? Phil Petree 2010/09/25
- [Proto-Scripty] Re: Variables in $$() ????? T.J. Crowder 2010/09/25
- Re: [Proto-Scripty] Re: Variables in $$() ????? Phil Petree 2010/09/25
- [Proto-Scripty] Re: Variables in $$() ????? T.J. Crowder 2010/09/25
- [Proto-Scripty] Re: Variables in $$() ????? Matt Foster 2010/09/30
Re: [Proto-Scripty] Variables in $$() ????? Phil Petree 2010/09/25