RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-08 Thread Bobby Hartsfield
://acoderslife.com -Original Message- From: Doug Bezona [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 11:53 PM To: CF-Talk Subject: RE: Anyone familiar with the CF_TwoSelectsRelated custom tag? E... I don’t think I'd totally agree with that. One load versus a load every

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-08 Thread Doug Bezona
depending on how it's being populated, the complexity of the data, etc. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 8:57 AM To: CF-Talk Subject: RE: Anyone familiar with the CF_TwoSelectsRelated custom tag? I guess you both

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-08 Thread Bobby Hartsfield
in an array depending on how it's being populated, the complexity of the data, etc. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 8:57 AM To: CF-Talk Subject: RE: Anyone familiar with the CF_TwoSelectsRelated custom tag? I guess

Re: Anyone familiar witht the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Doug Brown
Maybe...and I cannot remember everything about it. In your twoSelects custom tag you should have the select that you want to get the information from. In that select try.. select language=javascript name=select1 onChange=text.value = select1.value option value=test1Test1/option option

RE: Anyone familiar witht the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Snake
December 2006 18:05 To: CF-Talk Subject: Re: Anyone familiar witht the CF_TwoSelectsRelated custom tag? Maybe...and I cannot remember everything about it. In your twoSelects custom tag you should have the select that you want to get the information from. In that select try.. select language=javascript

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Bobby Hartsfield
Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 2:00 PM To: CF-Talk Subject: RE: Anyone familiar witht the CF_TwoSelectsRelated custom tag? These days your better off using AJAX to achieve the result of multiple related select lists. Its going to be a lot faster

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Snake
Hartsfield http://acoderslife.com -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 2:00 PM To: CF-Talk Subject: RE: Anyone familiar witht the CF_TwoSelectsRelated custom tag? These days your better off using AJAX to achieve the result of multiple

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Bobby Hartsfield
, 2006 5:54 PM To: CF-Talk Subject: RE: Anyone familiar with the CF_TwoSelectsRelated custom tag? If your only talking about a select list with a few options then yes. But if your preloading js arrays with hundreds of options this will result in quite a hefty page. Try it, and then check the size

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Doug Bezona
E... I don’t think I'd totally agree with that. One load versus a load every time you make a selection. If it's all client side and in js arrays already, the changes would be much faster than an asynchronous call to another process to get the info. The issue with large JS arrays isn't so