Re: [cfaussie] bind complete

2012-04-17 Thread Andrew Scott
Here is an easier approach btw http://tutorial544.easycfm.com/ -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 -- You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this gr

Re: [cfaussie] bind complete

2012-04-17 Thread Andrew Scott
Steve what you need to do then is something like this function mediachange(x) { console.log(x); } That is provided your cfselect is something like this. The ajaxproxy will then bind the change event to the cfselect, in which you can then do what you need to do based on the value selecte

RE: [cfaussie] bind complete

2012-04-17 Thread Steve Onnis
I personaly don't like using it. It is being used within an existing app i am working on so i am pretty locked to what is there, and i believe it is stil CF8 also From: Blair McKenzie [mailto:shi...@gmail.com] Sent: Wednesday, 18 April 2012 12:47 PM To: cfaussie@googlegroups.com Subject: Re:

Re: [cfaussie] bind complete

2012-04-17 Thread Blair McKenzie
No, but that's a good idea. There are several improvements to the watch stuff that would make custom access easier. Would you be willing to use the latest branch code? Blair On Wed, Apr 18, 2012 at 12:20 PM, Steve Onnis wrote: > I am working with existing code which is using the tag. I was > h

RE: [cfaussie] bind complete

2012-04-17 Thread Steve Onnis
I am working with existing code which is using the tag. I was hoping there might be an onBindComplete function or similar From: Andrew Scott [mailto:andr...@andyscott.id.au] Sent: Wednesday, 18 April 2012 12:14 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] bind complete You me

Re: [cfaussie] bind complete

2012-04-17 Thread Blair McKenzie
At the moment that would be difficult. Obviously you can ftWatch the state field to update a third field, but for custom behaviour you will need to reproduce some of the ftWatch functionality in your own javascript: $j("select[name^=mystate]").live("click",function(){ ... }); Blair On Wed, Apr 18

Re: [cfaussie] bind complete

2012-04-17 Thread Andrew Scott
You mean something like this? http://www.andyscott.id.au/2010/7/25/ColdFusion-and-populating-a-dropdown-based-on-the-selection-of-another -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Wed, Apr 18, 2012 at 12:06 PM, Stev

[cfaussie] bind complete

2012-04-17 Thread Steve Onnis
Is there a method you can call when an ajax bind update has been completed? I have 2 select boxes (country/state) and state gets updated based on the selection of the country. When the state select box has been updated i want it to trigger something else. Is this possible? Steve -- Y