[cfaussie] hiding form fields dependant on value entered in previous field

2011-03-15 Thread raiola
Hi, I have a form with a select box allowing the user indicating number of years a person has lived at their current address cfselect name=years_at_curent_adress I have another section on the form relating to Previous address however I only want the table rows containing fields relating to

Re: [cfaussie] hiding form fields dependant on value entered in previous field

2011-03-15 Thread Brad Fleming
Hi Claude, Perhaps making the Previous Address section it's own table and put that in a div with an id=previousAddressDetailsDiv. You can then set the visibility of the div with a javascript function that is run on change of the years_at_current_address. I hope that helps. Cheers, Brad

[cfaussie] Re: Daily Rate

2011-03-15 Thread Chong
@Mark I usually mention this in the Melbourne CFUG so they know my stance... having the right skills (OOP, proper relational tables,etc etc) is sufficient, coldfusion should be mentioned as a secondary and not a requirement at all, you should be able to teach even a fresh grad the syntax within

Re: [cfaussie] Re: Daily Rate

2011-03-15 Thread christophe albrech
Mark, I don't understand how you could have been stuck for 4 years. Why didn't you hire a grad for 40/45k a year and train them ? On Tue, Mar 15, 2011 at 2:07 PM, Mark Picker mark.pic...@det.nsw.edu.auwrote: As Brian said short term I took it as meaning contractor rate, not salary. If it

Re: Re: [cfaussie] Re: Daily Rate

2011-03-15 Thread peter . tilbrook
Contractor. You can do amazing things to beat back the .Net affliction. But Once contract is over thanks for coming. Build a bridge. On , christophe albrech christophe.albr...@gmail.com wrote: Mark, I don't understand how you could have been stuck for 4 years. Why didn't you hire a grad

Re: [cfaussie] Daily Rate

2011-03-15 Thread Simon Haddon
lol Peter. $120 / day. I think that Woollies pay more as a checkout chick. I tend to go for that an hour on a bad day. On 15 March 2011 16:56, ColdGen Internet Solutions coldgen.internet.soluti...@gmail.com wrote: So... 15 years at $15 per hour base rate (8 hours per day)? $120 ish per day

[cfaussie] Re: Daily Rate

2011-03-15 Thread Chong
Oops i meant 6 month contract not 6 month experience =X . . . Anyway just in case you didnt know there is a cfjobs google grps, and you should try asking around with your local CFUG https://groups.google.com/group/cfjobs?hl=en On Mar 15, 5:11 pm, Chong kck...@gmail.com wrote: @Mark I usually

[cfaussie] Extending Application.cfc

2011-03-15 Thread Gavin Beau Baumanis
Let me start with; This might sound a little weird. We have extended Application.cfc which extends BaseApplication.cfc I am pretty sure that I have discussed it before, but a search of the group hasn't turned up anything. The reason for this post is - I am sure I did the extends for a real /

Re: [cfaussie] Extending Application.cfc

2011-03-15 Thread Kym Kovan
On 16/03/2011 09:57, Gavin Beau Baumanis wrote: So I thought I would ask for the normal use-cases that an Application.cfc gets extended - in the hope I might be able to recall why we did it in the first place. (Of course I'll document on our internal Wiki - once I know!!) A good example

Re: [cfaussie] Extending Application.cfc

2011-03-15 Thread Gavin Beau Baumanis
Hi Kym, Thanks. Weirdly, we don't put anything into Application.cfc. This is it; cfcomponent name=Application extends=BaseApplication /cfcomponent And we have BaseApplication.cfc and Application.cfc in the same directory. (with no other Application.cfc s anywhere in the application) So it seems

Re: [cfaussie] Extending Application.cfc

2011-03-15 Thread Mark Mandel
You wanted to share common application settings across disparate directories / web applications? Mark On Wed, Mar 16, 2011 at 10:27 AM, Gavin Beau Baumanis b...@palcare.com.auwrote: Hi Kym, Thanks. Weirdly, we don't put anything into Application.cfc. This is it; cfcomponent

Re: [cfaussie] Extending Application.cfc

2011-03-15 Thread Kym Kovan
On 16/03/2011 10:27, Gavin Beau Baumanis wrote: But I know we did it for some reason. I just can't remember what it was! At this point I could make a comment about comments, but I won't :-) -- Yours, Kym Kovan mbcomms.net.au -- You received this message because you are subscribed to the

Re: [cfaussie] Extending Application.cfc

2011-03-15 Thread Gavin Beau Baumanis
HI Mark / Kym, I do realise that it is a bit of a stupid question / fishing exercise. I genuinely can't recall why we did it. I have done a bit of a google search, hoping to find my original discussion - or perhaps the content that I worked from when doing the change... But haven't found

Re: [cfaussie] Extending Application.cfc

2011-03-15 Thread Gavin Beau Baumanis
Oddly : There are no comments. But if you were to look at the rest of the code - there are comments everywhere. I am actually a bit of a comments junkie...Possibly even too much. Here's the cheat sheet I sent when we had offshore developers helping us out. • Comment all code, •

Re: [cfaussie] Extending Application.cfc

2011-03-15 Thread Robin Hilliard
Hi Gavin, Around CF 6-7 there was a bug with this as a workaround - the Advanced CF7 course uses the same idea of Application.cfc extending a blank base class. I'm not sure when the workaround became unnecessary. Robin ROBIN HILLIARD Chief Technology Officer

[cfaussie] Windows 7 CFEclipse / CFBuilder maxed out TCP connections

2011-03-15 Thread BarryC
Hi, I have my files on a mapped network drive (NFS in my case), I'm running windows 7 enterprise and am having problems with CFEclipse hanging (CFBuilder does exactly the same thing) when opening lots of files ( 10) or refreshing folders. If I look at the resource monitor, I can see the TCP

Re: [cfaussie] Windows 7 CFEclipse / CFBuilder maxed out TCP connections

2011-03-15 Thread Kym Kovan
Hi Barry, Win7 on its own has a partial limit of 16K connections but is normally limited by memory rather than limit. There is this limit we bumped into trying to get some 2008 R2 servers talking to a NAS with NFS: http://support.microsoft.com/kb/977517 Just 16 connections per IP! Not

[cfaussie] Re: Windows 7 CFEclipse / CFBuilder maxed out TCP connections

2011-03-15 Thread BarryC
My issue only happens on Windows 7, it used to work fine on Windows XP (same coldfusionbuilder / eclipse version and the file store is exactly the same), which is why I was thinking it might be something to do with Windows 7 :) On Mar 16, 4:53 pm, Kym Kovan dev-li...@mbcomms.net.au wrote: Hi