Order of Display/Page Rendering Question

2001-04-16 Thread Les Mizzell
I have a page that was originally ASP that I've converted over to CF. This was a "Find a Rep near you" type search that has a huge database behind it (eight different countries) - so the search could take up to 10 or 15 seconds. On the ASP version, so the user wouldn't get too bored during the p

RE: add new record

2001-04-16 Thread John Wilker
I would check the Allaire site in the tag gallery. I'm pretty sure I've seen something like that in there. do a search for select or input, there are lots of custom tags for form activities. J. John Wilker Web Applications Consultant Allaire Certified ColdFusion Developer www.red-omega.com

Re: Two queries (nested cfoutput)

2001-04-16 Thread Jose Alberto Guerra Ugalde
You can change the nested cfoutput for a query cfloop: select notice.noticeID, notice.title, notice.url, notice.information, documents.iconPath from notices, documents where notice.docType = documents.docTypeID #title# select subnote.title as subTitle, subnotes.url as subUrl, documents.i

RE: cfid/cftoken

2001-04-16 Thread Ken Beard
thanks for the info, but i still have one question.. when a user goes to another cf server with a cfid/token from the first server... does the new server make a new cfid/cftoken or does it use the one from the other server? If it does make a new one, does that overwrite the first one? thanks K

Showing the results of an add or edit operation

2001-04-16 Thread Hubert Earl
Hi, I've built four files. The first shows the contents of a table. The second is a form which the user to add to, edit or delete from the table, after which the user is automatically returned to the file showing the table contents. The third is the action file for the add to and edit operat

Re: text box output truncation

2001-04-16 Thread paul .
Thanks micheal !. it works now -paul -- On Mon, 16 Apr 2001 17:26:35 Michael Lugassy wrote: >Use "" signs in the value >without it your value for textarea/text input will include only the first >word. > > >- Original Message - >From: "paul ." <[EMAIL PROTECTED]> >To: "CF-Talk" <[EMAIL

Re: text box output truncation

2001-04-16 Thread Seth Weiss
My understanding of trim is that it removes leading and trailing spaces only and not spaces on the interior. If the variables are url, then urlencodedformat() function might be appropriate. Seth - Original Message - From: "Judith Taylor" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTE

Inputfilter

2001-04-16 Thread Robert Everland
I was just reading up on my security at allaire and saw the input filter tag they say they have, but I can't download it. Does anyone have this tag, it's not the same that is on the tag gallery. This tag seems pretty interesting considering it would take care of anyone appending anything t

add new record

2001-04-16 Thread Jones, Becky
i have a drop down list of peoples names. on the same page right next to that drop down list i want to put an "add" button to add a new person, if the person isnt already in the list. any easy way to go about getting this done? thanks for the help, bec. *

Re: text box output truncation

2001-04-16 Thread Judith Taylor
From my understanding of the TRIM() function, whenever it encounters a space, it then removes any and all following information if it exists. So, if you're wanting to have the "Brand new day" outputted correctly, drop the trim() portion. Judith paul . put into words: >Hi Guys am experiencing

Re: text box output truncation

2001-04-16 Thread Michael Lugassy
Use "" signs in the value without it your value for textarea/text input will include only the first word. - Original Message - From: "paul ." <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 16, 2001 4:18 PM Subject: text box output truncation > Hi Guys am expe

Transferring 1-3Kb data

2001-04-16 Thread Michael Lugassy
We devloped a client program (in visual c++) that stores log files for usage in the client and its features. I need the best way to deliver those small log files (no more then 2Kb for a full week of usage) to our CF production server and then, to zip those files and send them daily to our develo

RE: child window

2001-04-16 Thread Robert Orlini
Good code Seth...works great. Thank you and the others for their suggestions as well. Robert O. >-Original Message- >From: Seth Weiss [mailto:[EMAIL PROTECTED]] >Sent: Monday, April 16, 2001 8:26 AM >To: CF-Talk >Subject: Re: child window > > >Here is a little snip I use for this -- a li

text box output truncation

2001-04-16 Thread paul .
Hi Guys am experiencing a strange thing! when I try to get the vakue from the dateabse into the text bos for further editing .. the value for #meeting_name#gets truncated.. and am getting results like"Brand" when i wanted that to be "Brand new day" please suggest the code is Given down below -th

RE: Alert Box with countdown?

2001-04-16 Thread Duane Boudreau
Syntax showModalDialog( szURL, "", "dialogWidth:400; dialogHeight:400"); check out for more: http://msdn.microsoft.com/workshop/browser/mshtml/reference/IFaces/Window2/s howModalDialog.asp Dan, I am only using IE for this but I am not familiar with Modal? Do you have any sample code? Th

Re: Alert Box with countdown?

2001-04-16 Thread Neil H.
Dan, I am only using IE for this but I am not familiar with Modal? Do you have any sample code? Thanks, Neil - Original Message - From: "Dan G. Switzer, II" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 16, 2001 9:47 AM Subject: RE: Alert Box with countd

RE: Alert Box with countdown?

2001-04-16 Thread Dan G. Switzer, II
Neil, You can't update an alert box, but you could create a pop-up window (or if you're using IE exclusively, then create a Modal window.) With a pop-up or Modal window, you'd just be creating a standard HTML document. The other option, of course, would be to use DHTML to create alert-style dialo

Alert Box with countdown?

2001-04-16 Thread Neil H.
Is there a way to make an alert box display a countdown timer and an ok Button to close it? Thanks, Neil ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.m

Re: child window

2001-04-16 Thread Seth Weiss
Here is a little snip I use for this -- a little clearer than the last post: - Original Message - From: "Robert Orlini" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 16, 2001 10:00 AM Subject: child window > This isn't a CF question, but does anyone know

Re: child window

2001-04-16 Thread Seth Weiss
childwindow.focus() - Original Message - From: "Robert Orlini" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 16, 2001 10:00 AM Subject: child window > This isn't a CF question, but does anyone know what to add to a pop-window > JavaScript code to make the c

Re: child window

2001-04-16 Thread dk
something like: newwindowname.focus() should do the trick DK www.artmaya.com - Original Message - From: Robert Orlini <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Monday, April 16, 2001 7:30 PM Subject: child window > This isn't a CF question, but does anyone know what t

child window

2001-04-16 Thread Robert Orlini
This isn't a CF question, but does anyone know what to add to a pop-window JavaScript code to make the child window stay "module" or on top each time a link is clicked? Currently when I click each link it puts the child window in the background. --