Re: zipping and unzipping a string

2005-10-15 Thread Aaron DC
I'm not 100% sure, but SQL server 6 or 7 (I think, from memory) has a 
max record size of 8000 bytes or something weird. We had a couple of 
varchar 4000 fields and all the normal fields on top of that (PK, FKs, 
etc etc). It was fine till it started truncating info. Much research 
later and it turned out that the max record length was being exceeded. 
Hence the text field type and its data pointer goodness... One 
confirmation here: http://west-wind.com/weblog/posts/207.aspx

If your wddx access does not need to be lightning fast, another option 
is to store it on the HDD and just store a reference to the file in your 
database table.

HTH
Aaron

Jim Davis wrote:

>>-Original Message-
>>From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
>>Sent: Sunday, October 16, 2005 12:06 AM
>>To: CF-Talk
>>Subject: RE: zipping and unzipping a string
>>
>>
>>
>>>From: John Blayter [mailto:[EMAIL PROTECTED]
>>>I am looking for a way to zip and unzip a string without
>>>going to the hard drive to perform I/O operations. I have
>>>started hacking away at some code but I don't know enough
>>>Java to get it working.
>>> I have a WDDX packet that can be between 9 - 14K that we
>>>want to store in a SQL server database. The database guy has
>>>hatred towards using a text data type and has challenged us
>>>to find a way to fit a 14K wddx packet into a
>>>varchar(8000) field. Any help would be greatly appreciated.
>>> Thanks,
>>>  
>>>
>>I would tell your DBA that large data types exist for a reason... large
>>data! What is his reasoning for not wanting the text data type used? What
>>is
>>the purpose of the field, will it be searched? Indexed? Is the DBA
>>familiar
>>with "Text In Row" (alleviates the double I/O or text retrieval)... etc...
>>
>>
>
>Yeah... I gotta agree.  You shouldn't change your data because of a personal
>"hatred" towards a perfectly usable feature.  Does he have actual reasons?
>Anything that will offset the development time needed (and they completely
>lack of flexibility assumed) from hacking large data to fit in a smaller
>field?
>
>Look at the data.  Use the data type most appropriate to the data.  That's
>really DB 101 there.
>
>If you have problems after that optimize, consider kludges, etc.  But not to
>do the logical thing because of a unsubstantiated personal opinion is just
>plain silly.
>
>Jim Davis
>  
>

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221148
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: zipping and unzipping a string

2005-10-15 Thread Jim Davis
> -Original Message-
> From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
> Sent: Sunday, October 16, 2005 12:06 AM
> To: CF-Talk
> Subject: RE: zipping and unzipping a string
> 
> > From: John Blayter [mailto:[EMAIL PROTECTED]
> > I am looking for a way to zip and unzip a string without
> > going to the hard drive to perform I/O operations. I have
> > started hacking away at some code but I don't know enough
> > Java to get it working.
> >  I have a WDDX packet that can be between 9 - 14K that we
> > want to store in a SQL server database. The database guy has
> > hatred towards using a text data type and has challenged us
> > to find a way to fit a 14K wddx packet into a
> > varchar(8000) field. Any help would be greatly appreciated.
> >  Thanks,
> 
> I would tell your DBA that large data types exist for a reason... large
> data! What is his reasoning for not wanting the text data type used? What
> is
> the purpose of the field, will it be searched? Indexed? Is the DBA
> familiar
> with "Text In Row" (alleviates the double I/O or text retrieval)... etc...

Yeah... I gotta agree.  You shouldn't change your data because of a personal
"hatred" towards a perfectly usable feature.  Does he have actual reasons?
Anything that will offset the development time needed (and they completely
lack of flexibility assumed) from hacking large data to fit in a smaller
field?

Look at the data.  Use the data type most appropriate to the data.  That's
really DB 101 there.

If you have problems after that optimize, consider kludges, etc.  But not to
do the logical thing because of a unsubstantiated personal opinion is just
plain silly.

Jim Davis




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221147
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfform alert box

2005-10-15 Thread Paul Hastings
dave wrote:
> butt now it doesnt delete the record, im thinking i gotta add the
> selectedIndex to the submitform, right now i have tis

and what shows up in the form "structure" when you do submit it via the
submit command?

and why aren't you using remoting for that "black beret wearing" user 
experience?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221146
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfform alert box

2005-10-15 Thread dave
nope i had missed that... thanks

 butt now it doesnt delete the record, im thinking i gotta add the 
selectedIndex to the submitform, right now i have tis

 
 function confirm(evt) {
 if (evt.detail == mx.controls.Alert.OK) {
 _root.submitForm();
 }
 } // confirm

 function doubleCheck(){
 alert("Are you sure you want to remove this record", "Warning",
 mx.controls.Alert.OK | mx.controls.Alert.CANCEL, confirm);
 } // doubleCheck
 

~Dave the disruptor~
"Some people just don't appreciate how difficult it is to dispense wisdom and 
abuse at the same time." 


From: Paul Hastings <[EMAIL PROTECTED]>
Sent: Sunday, October 16, 2005 12:07 AM
To: CF-Talk 
Subject: Re: cfform alert box 

dave wrote:
> bu, the code they have is about the same but it just pops another 
> alert up to say its deleted but of course its not and it still doesnt wait 
> for confirmation before submiting the form, I tried adding submitForm() in 
> place of the 2nd alert box but it still doesnt wait gr

did you follow my example? is the "submit" button just a plain button?



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221145
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: zipping and unzipping a string

2005-10-15 Thread Michael T. Tangorre
> From: John Blayter [mailto:[EMAIL PROTECTED] 
> I am looking for a way to zip and unzip a string without 
> going to the hard drive to perform I/O operations. I have 
> started hacking away at some code but I don't know enough 
> Java to get it working.
>  I have a WDDX packet that can be between 9 - 14K that we 
> want to store in a SQL server database. The database guy has 
> hatred towards using a text data type and has challenged us 
> to find a way to fit a 14K wddx packet into a
> varchar(8000) field. Any help would be greatly appreciated.
>  Thanks,

I would tell your DBA that large data types exist for a reason... large
data! What is his reasoning for not wanting the text data type used? What is
the purpose of the field, will it be searched? Indexed? Is the DBA familiar
with "Text In Row" (alleviates the double I/O or text retrieval)... etc... 

Mike




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221144
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfform alert box

2005-10-15 Thread Paul Hastings
dave wrote:
>  bu, the code they have is about the same but it just pops another 
> alert up to say its deleted but of course its not and it still doesnt wait 
> for confirmation before submiting the form, I tried adding submitForm() in 
> place of the 2nd alert box but it still doesnt wait gr

did you follow my example? is the "submit" button just a plain button?

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221143
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


zipping and unzipping a string

2005-10-15 Thread John Blayter
I am looking for a way to zip and unzip a string without going to the hard
drive to perform I/O operations. I have started hacking away at some code
but I don't know enough Java to get it working.
 I have a WDDX packet that can be between 9 - 14K that we want to store in a
SQL server database. The database guy has hatred towards using a text data
type and has challenged us to find a way to fit a 14K wddx packet into a
varchar(8000) field. Any help would be greatly appreciated.
 Thanks,

--
John Blayter
email: [EMAIL PROTECTED]


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221142
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Thoughts on Requiring Javascript

2005-10-15 Thread Bobby Hartsfield
Internally as you’ve said... I'd say, "Sorry, you need JS" 
To an extent, I would do it on many external sites as well.

Sometimes budget doesn't give room to do two versions of specific components
so the client needs to decide which is more important to them. Global
usability or flare for the masses. If budget does allow it, I usually write
2 versions. (provided that the site isn’t dependant on something like
milonic menu throughout anyway)

Of course, you are already running blackboard (I feel for you) and users
must have JS for 95% of that anyway so why not an intranet? 

On a different note, I found so many bugs in Blackboard, it wasn't even
funny! SQL Injection heaven.

You could mimic the data structure and half the code simply from error
messages in that thing!

..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 15, 2005 9:31 PM
To: CF-Talk
Subject: SOT: Thoughts on Requiring Javascript

I'm interested in what you think of requiring JS for a web site.  What
is the current mentality on JS?  I know that to use Gmail, Google Maps
and, in our case, Blackboard Learning System, you must enable JS.
 
I would love to get more into AJAX to make my pages easier to build and
use, but I'm afraid I may alienate some people.  I will say, that as an
educational institution, we have some people that will disable JS, but
it should be a minimal amount.
 
Let's say that I do require an extensive amount of JS on my site (it
will be an intranet), then how far do I go to support non-JS users?
Let's also say I create a form that lets me look up a user based on
their ID number, name or email address.  AJAX will make this task very
easy.
 
However, if a person disables JS, should I bother to create a non-JS
version of the page?
 
I'm just curious in how far you go to require JS and, if you do, do you
give an alternative other than "Sorry, this page requires javascript"?

Thanks




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221141
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


SOT: Thoughts on Requiring Javascript

2005-10-15 Thread Dawson, Michael
I'm interested in what you think of requiring JS for a web site.  What
is the current mentality on JS?  I know that to use Gmail, Google Maps
and, in our case, Blackboard Learning System, you must enable JS.
 
I would love to get more into AJAX to make my pages easier to build and
use, but I'm afraid I may alienate some people.  I will say, that as an
educational institution, we have some people that will disable JS, but
it should be a minimal amount.
 
Let's say that I do require an extensive amount of JS on my site (it
will be an intranet), then how far do I go to support non-JS users?
Let's also say I create a form that lets me look up a user based on
their ID number, name or email address.  AJAX will make this task very
easy.
 
However, if a person disables JS, should I bother to create a non-JS
version of the page?
 
I'm just curious in how far you go to require JS and, if you do, do you
give an alternative other than "Sorry, this page requires javascript"?

Thanks


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221140
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How can I make this select menu work?

2005-10-15 Thread Will Tomlinson
>Will,
>
>Have you looked into using qForms? It makes working with forms on the client
>side a snap.
>
>Mike

I've heard you guys talk about how good they work. But never looked into them. 
Checkin'em out now dude!

Thanks much,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221139
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How can I make this select menu work?

2005-10-15 Thread Michael T. Tangorre
> From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
> Well guys, after perusing the docs a bit, I found a nifty new 
> addition to mx7. You can pass a csv list to the selected 
> attribute of cfselect which pre-selects multiple items.I 
> combined what Jeff showed me, and this, which almost made it 
> work. You can't do it when the format is XML. You CAN however 
> when the format is Flash. Guess I'll just leave this as a 
> flash form and leave the headache behind. 

Will,

Have you looked into using qForms? It makes working with forms on the client
side a snap.

Mike




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221138
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfform alert box

2005-10-15 Thread dave
yeah they do some amazing things there!

 bu, the code they have is about the same but it just pops another 
alert up to say its deleted but of course its not and it still doesnt wait for 
confirmation before submiting the form, I tried adding submitForm() in place of 
the 2nd alert box but it still doesnt wait gr

~Dave the disruptor~
"Some people just don't appreciate how difficult it is to dispense wisdom and 
abuse at the same time." 


From: "Andrew Stevens" <[EMAIL PROTECTED]>
Sent: Saturday, October 15, 2005 6:38 AM
To: CF-Talk 
Subject: RE: cfform alert box 

This unlocked the mystery for me:
http://www.asfusion.com/blog/examples/cfforms/alert.cfm

A truly great site.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221137
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How can I make this select menu work?

2005-10-15 Thread Will Tomlinson
Well guys, after perusing the docs a bit, I found a nifty new addition to mx7. 
You can pass a csv list to the selected attribute of cfselect which pre-selects 
multiple items.I combined what Jeff showed me, and this, which almost made it 
work. You can't do it when the format is XML. You CAN however when the format 
is Flash. Guess I'll just leave this as a flash form and leave the headache 
behind. 

Thanks Jeff,

Will 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221136
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any Interest in a Completely Free CFML Calendar?

2005-10-15 Thread Matt Robertson
On 10/14/05, Rick Root <[EMAIL PROTECTED]> wrote:
> FCKeditor is the only "free" software that I've ever actually made a
> donation for.  I use it so heavily and happily.

Yeah I tossed him a sack of coins myself.  I'd love to do it again if
only he could make v2.x functional.  I reported a huge bug just
yesterday.  H e really needs to freeze his feature set and do nothing
but chase bugs.

--
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221135
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: coldfusion java tutorial

2005-10-15 Thread Robert Munn
Make sure you compile the class file(s) with the same libraries CF uses, or you 
could end up with stuff that works locally in Java but not in CF.

The basic Java tutorial in the CFMX docs is actually quite good. Try to compile 
and use the example class. 

The pathing issue- put your class in $cfusion_root$/lib/ (whereever 
$cfusion_root$ is on your particular install- might be /CFusionMX/.



>Are there any good tutorials that show you how to write a java class
>and then call it in CFMX?
>
>I've played a little bit with both but I have yet to get a class I
>have written to work in CF.
>
>--
>Phil

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221134
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Forums w/external authentication

2005-10-15 Thread Bobby Hartsfield
If the login processes are based on sessions (like most are), I'm sure you
can add any session variables you want to either process... add your site
login session variables to the message board login and vise versa.

I've built my sites entire authentication around my message boards
authentication so one login gets me anywhere in the site.
 
..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-Original Message-
From: Marty Johll [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 15, 2005 12:29 AM
To: CF-Talk
Subject: Forums w/external authentication

I'm looking at ways of integrating a forum into my site without having to
have users login a second time into the forums. I curious if anyone has
integrated a CF-based forum into their site that integrated your existing
authentication?

For example, fusetalk has the capacity to choose between local or external
authentication and one may edit a login.cfm file to put one's own
authentication in place and then set some variables based on your session
(or cookie) variables. I tried installing fusetalk but I'm getting some
errors and have questions into them, but while I'm waiting I thought I'd see
what other may have done.

Thanks,
Marty




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221133
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How can I make this select menu work?

2005-10-15 Thread Will Tomlinson
Jeff,

I've almost got it but not quite. Everything looks like it SHOULD select the 
categories, but it won't. 

I dump the value list:
4,2

Here's my select:

  
 SELECTED>#catname# 
 


On a product with one category, it selects it correctly. The problem is when I 
get to TWO categories. It wouldn't select any. I added the EQ true and it 
selects one of the categories. But it's like it won't loop over the second and 
select that one as well. 

here's the generated html so you can see the valuelist does indeed match two 
items:


 
  Shirts 

  Shoes 

  Shorts 
 

It should match 4 and 2 but it won't. Any idea on this? I'll keep messin round 
with it. 

Thanks!
Will


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221132
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


job opening in Ft Lauderdale

2005-10-15 Thread S . Isaac Dealey
Hi all,

I just accepted the job of Director of Software Development for a new
company in Virginia, so the company I've been working for is looking
for a new programmer here in Ft Lauderdale, Florida (I think they're
looking for 2 actually) for an ASP application in the residential
real-estate industry. Good place to work, great health insurance - I
don't know about the salary range (they promoted someone internally
into my position and are hiring for junior/intermediate jobs). There
are 14 other programmers including the CTO and lead developer but not
myself. If you're interested, drop me a line.

Thanks,

p.s. I wouldn't worry about talk of the real-estate industry being on
the up-swing of a bubble (re: dot-com) -- when it happens it will
simply change the landscape of real-estate to focus heavily on
conversions rather than focussing heavily on new builds (as is the
case now) and since their service is primarily a sales and reporting
tool for the developers (not to mention being the first application of
its kind and still unique in a number of respects), it shouldn't
affect their business much (if at all).

s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221131
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Pluggable Security system/ app architecture (WAS: Re: Any Interest in a Completely Free CFML Calendar?)

2005-10-15 Thread Jim Davis
> -Original Message-
> From: Jim Davis [mailto:[EMAIL PROTECTED]
> Sent: Saturday, October 15, 2005 2:44 PM
> To: CF-Talk
> Subject: RE: Pluggable Security system/ app architecture (WAS: Re: Any
> Interest in a Completely Free CFML Calendar?)
> 
> Actually you've just pointed out a bug in my documentation - the broker
> templates available (if any) should be linked at the top of each component
> -
> they're not.  You can see in the code lines like:
> 
> http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221130
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Pluggable Security system/ app architecture (WAS: Re: Any Interest in a Completely Free CFML Calendar?)

2005-10-15 Thread Jim Davis
> -Original Message-
> From: Robert Munn [mailto:[EMAIL PROTECTED]
> Sent: Saturday, October 15, 2005 2:29 PM
> To: CF-Talk
> Subject: Re: Pluggable Security system/ app architecture (WAS: Re: Any
> Interest in a Completely Free CFML Calendar?)
> 
> This is along the lines of what I was thinking, at least the core of it.
> Your notion of creating the model without defining an interface is the
> heart of what I was thinking. DAOs would need to be built to connect the
> logical model to specific data providers- LDAP, SQL Server, MySQL, etc. A
> web services facade would need to be built to provide an API for external
> applications.

Actually that's one aspect of the library that I like: all persistence
information is maintained separately already in DAO-like "Broker"
components.

Right now I've only done SQL Server brokers, but to add a different
persistence entity you only need to define a new set of brokers (using the
provided broker interfaces as a base).

You can quite easily add new broker sets for any database, LDAP, XML, flat
files or whatever - as long as the brokers return the expected information.

Actually you've just pointed out a bug in my documentation - the broker
templates available (if any) should be linked at the top of each component -
they're not.  You can see in the code lines like:

http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221129
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Are there any CFeclipse tutorials out there?

2005-10-15 Thread Robert Munn
"Setting it up with ColdFusion" is just a matter of having the CFE plugin, plus 
any additional plugins you like (XML editors, etc.). Looks like you are most of 
the way there.

In terms of setting up SubVersion, Cameron Childress just did a great 
presentation last month at the San Diego CFUG on this very topic. The slides 
are available at the site here:

http://www.sdcfug.org/index.cfm?fuseaction=home.pastMeetings





>Hi,
> I am jumping into cfeclipse as we speak. Installed the core eclipse and
>updated the cfeclispe. Unfortunately it seems that the books on line are not
>available. Are there any tutorials, books that show how to set it up with
>coldfusion and integrate it with subversion , or it's just a matter of trial
>and error.
>  Thanks
>Victor

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221128
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Pluggable Security system/ app architecture (WAS: Re: Any Interest in a Completely Free CFML Calendar?)

2005-10-15 Thread Robert Munn
This is along the lines of what I was thinking, at least the core of it. Your 
notion of creating the model without defining an interface is the heart of what 
I was thinking. DAOs would need to be built to connect the logical model to 
specific data providers- LDAP, SQL Server, MySQL, etc. A web services facade 
would need to be built to provide an API for external applications. 

Are these libraries something that could be used as a baseline for development?



>> -Original Message-
>
>Jim wrote:
>
>I'm not sure if it'll suit but I've got this (scroll to the bottom - the
>Security system):
>
>http://www.depressedpress.com/Content/Development/ColdFusion/DPLibraries/Ind
>ex.cfm
>
>Unfortunately I've not yet found the time to document it for use, but the
>component catalog is complete.
>
>The main idea of the system is to provide the core needs of security without
>defining an interface - in other words defining the service but not the look
>and feel.
>
>
>The system is CFC-based and a web-services façade could easily be added.
>

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221127
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How can I make this select menu work?

2005-10-15 Thread Will Tomlinson
Thanks a ton Jeff! I gotta take a nap then I'm gonna give this another whirl. 

:)

Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221126
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How can I make this select menu work?

2005-10-15 Thread Jeff Garza
Not sure what your query is... but why not just do this on the SQL end and
determine if the category is selected there?  That would alleviate having to
do a bunch of nested loops...

To answer your question though... you would need an additional CFOUTPUT
inside of the original one with the group attribute.  You should be able to
get rid of the group attribute altogether by creating a valueList of the
selected catIDs to do a list operation on each row of your original query
rather than looping each time.





  SELECTED>>#listprodcategories.catname#  



I just typed this in the email window so no guarantees on it actually
working... ;-)  YMMV, IANAL, etc...

Jeff

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 15, 2005 10:44 AM
To: CF-Talk
Subject: How can I make this select menu work?

I'm building a product edit form that should show all product categories,
but for a particular product it'll show current categories, selected. 

So I run two queries, one to grab all categories, the other to grab
categories that match the prodID in the linking/many table. 

Here's what I've got so far. It doesn't work and I'm gettin' a little
frustrated cause this should be pretty easy. 


   

   
selected>#listprodcategories.catname#<
/option> 
   



Right now, that shows one category listed 5 times in a row, zll selected.
lol

Thanks,
Will



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221125
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


How can I make this select menu work?

2005-10-15 Thread Will Tomlinson
I'm building a product edit form that should show all product categories, but 
for a particular product it'll show current categories, selected. 

So I run two queries, one to grab all categories, the other to grab categories 
that match the prodID in the linking/many table. 

Here's what I've got so far. It doesn't work and I'm gettin' a little 
frustrated cause this should be pretty easy. 


   

   
selected>#listprodcategories.catname#

   



Right now, that shows one category listed 5 times in a row, zll selected. lol

Thanks,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221124
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: embarrasing trouble starting coldfusion

2005-10-15 Thread Jeff Garza
Try creating a batch file to do this for you... 

StartCF.bat

net start "Macromedia JRun CFusion Server"
net start "ColdFusion MX 7 ODBC Server"
net start "ColdFusion MX 7 ODBC Agent"
net start "ColdFusion MX 7 Search Server"

I have these for all my development services (SQL Server, IIS, CF, MySQL)

Cheers,

Jeff
-Original Message-
From: Mark Fuqua [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 15, 2005 10:21 AM
To: CF-Talk
Subject: embarrasing trouble starting coldfusion

Is there a way to "force" coldfusion to start on my laptop?  I used to be
able to start coldfusion simply by browsing to a page on my local root.
That started to be problematic and then for a while starting coldfusion
administrator from the start menu worked.  Now, it takes me many many tries
to get coldfusion started.  It is driving me crazy, though many would say it
is a rather short trip.

Is there a way to start coldfusion from the run command or something.  And
how do I tell whether or not it is running.  May be I am getting the "Page
cannot be displayed" error while coldfusion is actually running?

Thanks,

Mark




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221123
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: coldfusion java tutorial

2005-10-15 Thread Rick Root
Phill B wrote:
> Are there any good tutorials that show you how to write a java class
> and then call it in CFMX?
> 
> I've played a little bit with both but I have yet to get a class I
> have written to work in CF.

Well, you can access the exposed methods and properties of any java 
class you write from within CFMX the same way you access any built-in 
java class.

However, you've got to make sure that it's in the class path. 
Typically, you put the class file into a jar file, then stick it into 
/wwwroot/WEB-INF/lib/ - you may have to restart coldfusion.

Rick





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221122
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: embarrasing trouble starting coldfusion

2005-10-15 Thread Will Tomlinson
All I know is XP. 

start > control panel > administrative tools > services

You'll see cf in the list, then you can start or stop it. 

Will

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221121
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


embarrasing trouble starting coldfusion

2005-10-15 Thread Mark Fuqua
Is there a way to "force" coldfusion to start on my laptop?  I used to be
able to start coldfusion simply by browsing to a page on my local root.
That started to be problematic and then for a while starting coldfusion
administrator from the start menu worked.  Now, it takes me many many tries
to get coldfusion started.  It is driving me crazy, though many would say it
is a rather short trip.

Is there a way to start coldfusion from the run command or something.  And
how do I tell whether or not it is running.  May be I am getting the "Page
cannot be displayed" error while coldfusion is actually running?

Thanks,

Mark



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221120
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


coldfusion java tutorial

2005-10-15 Thread Phill B
Are there any good tutorials that show you how to write a java class
and then call it in CFMX?

I've played a little bit with both but I have yet to get a class I
have written to work in CF.

--
Phil

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221119
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Microsoft Patches Break 7.0 PDF Printing

2005-10-15 Thread Stephen Cassady
Just a note that we found our IIS6 Server (2003) Patch this last Tuesday 11
October 2005 patched with the following exception:

Creating PDF documents failed - leaving only an empty browser window.

Patching CFMX to 7.01 resolved this issue

Stephen Cassady
Lopedia 
http://www.Lopedia.com 
Translating business needs into working successful technology




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221118
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Are there any CFeclipse tutorials out there?

2005-10-15 Thread Nathan Strutz
I think you may have more luck if you search more generically. i.e.,
search for Eclipse with Subversion, as CFEclipse is just a plugin for
the Eclipse platform.

-nathan strutz


On 10/14/05, Victor Moore <[EMAIL PROTECTED]> wrote:
> Hi,
>  I am jumping into cfeclipse as we speak. Installed the core eclipse and
> updated the cfeclispe. Unfortunately it seems that the books on line are not
> available. Are there any tutorials, books that show how to set it up with
> coldfusion and integrate it with subversion , or it's just a matter of trial
> and error.
>   Thanks
> Victor
>
>
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221117
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Pluggable Security system/ app architecture (WAS: Re: Any Interest in a Completely Free CFML Calendar?)

2005-10-15 Thread Mark Fuqua
M!ke,

Is Plum a framework?  Well, it is, and it isn't.  I am going to pass this
thread on to Adam and David to make sure I am not being blasphemous, but at
it's simplest, without using any of the Plum custom tags or the IDE (which
would be quite silly actually, as for chunks of most projects the IDE and
custom tags are quite the time savers) plum is essentially a site wide
security model and an easy, consistent  way to incorporate your CSS model.

After you set-up your plum project, a process that takes about 15 min. and
spend some time making the style sheets like you want them (Plum
auto-generates a basestyleSheet.css, a large_TypeStyleSheet.css, a
printStyleSheet.css, with both standard and alternate layouts as well as
bottomNavBar.cfm, footer.cfm, Header.cfm, LeftNavBar.cfm and TopNavBar.cfm)
The following two calls setup all your layout and Navigation (If you are
curious, the default layouts are very similar to Adam and David's site
www.productivityenhancement.com ):




page code goes here





In between those two calls, you can stay within the "framework", meaning you
use the plum custom tags, or you can put any other code you wish.  Once one
becomes familiar with the Plum tags, it will surely be a mix, some will be
heavy on Plum, some will be light on Plum tags.

As far as security goes, it can be done on the module, page, page section or
just a line of code with the following call:


cf_Authorize
   roles = "ROLE1,ROLE2,ROLEn"
   userMustBeAMemberOf = "AnyOfTheseRoles | AllOfTheseRoles">

So as you can see, Plum really is not a framework as most would define
it...it is more like a methodology with a core set of files, functions, tags
and an IDE thrown in for fun.

Mark




-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED]
Sent: Saturday, October 15, 2005 9:28 AM
To: CF-Talk
Subject: RE: Pluggable Security system/ app architecture (WAS: Re: Any
Interest in a Completely Free CFML Calendar?)


Correct me if I'm wrong, but is Plum a framework and, if so, will the
security model be usable without a framework?

M!ke

-Original Message-
From: Mark Fuqua [mailto:[EMAIL PROTECTED]
Sent: Friday, October 14, 2005 9:18 PM
To: CF-Talk
Subject: RE: Pluggable Security system/ app architecture (WAS: Re: Any
Interest in a Completely Free CFML Calendar?)

Check out Plum.  www.productivityenhancement.com  The next planned
release is geared in this direction.

Mark




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221116
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Pluggable Security system/ app architecture (WAS: Re: Any Interest in a Completely Free CFML Calendar?)

2005-10-15 Thread Dawson, Michael
Correct me if I'm wrong, but is Plum a framework and, if so, will the
security model be usable without a framework?

M!ke 

-Original Message-
From: Mark Fuqua [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 14, 2005 9:18 PM
To: CF-Talk
Subject: RE: Pluggable Security system/ app architecture (WAS: Re: Any
Interest in a Completely Free CFML Calendar?)

Check out Plum.  www.productivityenhancement.com  The next planned
release is geared in this direction.

Mark

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221115
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFAJAX return types docco

2005-10-15 Thread Dawson, Michael
But this doesn't always correctly update the page's DOM, right?  When we
were testing this, I think IE (mac or pc, I forget) had some issues with
inserting an entire branch of information into a single container
without acutally creating the page elements using JS.

I also don't remember the context in which it didn't work for us.  It
may have been related to dynamically creating a form for later
submission.  If you are only outputting data, this will probably work
cross-browser.

I guess one could determine this by viewing the DOM viewer that comes
with FF's and IE's web developer toolbars.

M!ke

On 10/15/05, Munson, Jacob <[EMAIL PROTECTED]> wrote:
> Michael,
>
> I don't use much JS to do something with the cfajax results.  I 
> preformat all the data in the CF function by stuffing HTML into the 
> variable that gets returned.  Then I just use a simple function to 
> stuff all the HTML and data into a div or something:

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221114
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Announcement: cf_ezcart Price Drop

2005-10-15 Thread Bud
Hi all. I make it a point NOT to use this mailing list to promote my 
shopping cart (I've mentioned it maybe twice in 5 years), so this 
will be brief.

The price of cf_ezcart has been dropped to $200 and there is still a 
promo code that can be found in MM's ColdFusion Exchange for an 
additional $25 off. Of course, my customers will still receive 
unparalleled support. :)

http://www.cf-ezcart.com/

Thanks.
-- 

Bud Schneehagen - Tropical Web Creations, Inc.

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Web Based Solutions / eCommerce Development & Hosting
http://www.twcreations.com/ - http://www.cf-ezcart.com/
Toll Free: 877.207.6397 - Local & Int'l Phone/Fax: 386.789.0968

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221113
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


ColdFusion alike functions for ActionScript

2005-10-15 Thread newsight
Hi @ all!
 
This week I released a ActionScript class with some CF alike string & array
functions.
The whole info and the files you get on my Blog:
http://www.newsight.de/2005/10/12/coldfusion-alike-functions-for-actionscrip
t/
 

Cheers, Artur


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221112
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfform alert box

2005-10-15 Thread Andrew Stevens
This unlocked the mystery for me:
http://www.asfusion.com/blog/examples/cfforms/alert.cfm

A truly great site.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:22
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: godaddy.com now has CFMX7 hosting!

2005-10-15 Thread Webmaster at FastTrack On Line
or about 50p uk ;)

also j/k .. hehe

- Original Message - 
From: "Ray Champagne" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, October 14, 2005 10:08 PM
Subject: Re: godaddy.com now has CFMX7 hosting!


> $24.95 Canadian, eh?
>
> What's that, like $5.00/ mo US$?
>
> J/K, LOL
>
> Bryan Stevenson wrote:
>> I still say use Uniserve up here in Canada...$24.95 /mnth CANADIAN (still
>> CFMX 6.1)nothing disabled and you get a free MS SQL Server DB!!
>>
>> Bryan Stevenson B.Comm.
>> VP & Director of E-Commerce Development
>> Electric Edge Systems Group Inc.
>> phone: 250.480.0642
>> fax: 250.480.1264
>> cell: 250.920.8830
>> e-mail: [EMAIL PROTECTED]
>> web: www.electricedgesystems.com
>>
>>
>>
>
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221110
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54