Re: How to return multiple values with ajax select

2014-03-07 Thread George Christman
Awesome, congrats on the new addition to the family. Yes I'll take a look at it over the weekend, if I'm able to get to it, I'll send you back the code. On Fri, Mar 7, 2014 at 11:34 AM, Lance Java wrote: > > I'm assuming it hasn't been upgraded to run on 5.4 yet? :-( > Nope, it's on my todo list

Re: How to return multiple values with ajax select

2014-03-07 Thread Lance Java
> I'm assuming it hasn't been upgraded to run on 5.4 yet? :-( Nope, it's on my todo list (which has been growing since the arrival of a new baby). There's < 20 lines of javascript so I'm sure you can make it jquery / requireJS friendly in no time ;) > You have some nice components too. Thanks

Re: How to return multiple values with ajax select

2014-03-06 Thread George Christman
I'm assuming it hasn't been upgraded to run on 5.4 yet? :-( You have some nice components too. On Thu, Mar 6, 2014 at 5:53 PM, Lance Java wrote: > Yeah, it uses prototype's getValue() which works for all field types. > > There's a name clash to watch out for. Both select and onevent accept a > "

Re: How to return multiple values with ajax select

2014-03-06 Thread Lance Java
Yeah, it uses prototype's getValue() which works for all field types. There's a name clash to watch out for. Both select and onevent accept a "zone" parameter. From memory there's an option to qualify parameter names with the mixin name.

Re: How to return multiple values with ajax select

2014-03-06 Thread George Christman
Thanks lance, I won't get a chance to try it until tonight, but does it work with select menu's? On Thu, Mar 6, 2014 at 4:14 AM, Lance Java wrote: > Use my onevent mixin > http://tapestry-stitch.uklance.cloudbees.net/oneventdemo > > You can send as many clientside field values as you want in the

Re: How to return multiple values with ajax select

2014-03-06 Thread Lance Java
Use my onevent mixin http://tapestry-stitch.uklance.cloudbees.net/oneventdemo You can send as many clientside field values as you want in the serverside event. See the "group of fields" demo for an example.

How to return multiple values with ajax select

2014-03-05 Thread George Christman
Hi guys, I have the following scenario, Five drop down menus chained together Category, Year, Make, Model, Trim Each select menu is an ajax select menu designed to narrow down the result set. I'm looking for ideas or a solution that would enable me to narrow down the result set beyond one menu.