RE: submit cfform without submit button

2003-01-09 Thread Timothy Heald
It's already the default in IE.  In NN you need to look at the onKey events, should be 
like onKeyDown, onKeyUp, onKeyPress, something like that.  Then when the event is 
triggered you kick of a script that does a form submit.

Tim

-Original Message-
From: Jeremy Bunton [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 09, 2003 3:07 PM
To: CF-Talk
Subject: submit cfform without submit button


Hello all,

I know this isn't strictly a CF issue but I am using CF at the momeny so
here we go.
I have a simple form with two text fields one for username and one for
password. Here is the code.












My boss wants there to NOT be a submit button showing on the screen, i.e. he
just wants people to type in their username and password and then hit enter
to login. How would I go about this. I thought of just hiding the submit in
a  but that didn't do it. It needs to work in NN4.7 up and IE 5 up. Any
help would be good.


Jeremy



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: submit cfform without submit button

2003-01-09 Thread Adrocknaphobia Jones
Tell your boss I think he's an idiot. That such a usability no-no.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Jeremy Bunton [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 09, 2003 3:07 PM
To: CF-Talk
Subject: submit cfform without submit button

Hello all,

I know this isn't strictly a CF issue but I am using CF at the momeny so
here we go.
I have a simple form with two text fields one for username and one for
password. Here is the code.












My boss wants there to NOT be a submit button showing on the screen,
i.e. he
just wants people to type in their username and password and then hit
enter
to login. How would I go about this. I thought of just hiding the submit
in
a  but that didn't do it. It needs to work in NN4.7 up and IE 5 up.
Any
help would be good.


Jeremy



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: submit cfform without submit button

2003-01-09 Thread Jeremy Bunton
I strongly agree, I have made that point, and he didn't think it was a big
deal, but we'll see what he says now that I have it working. I am sure he
will change his mind.

Jeremy

-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 09, 2003 3:33 PM
To: CF-Talk
Subject: RE: submit cfform without submit button


Tell your boss I think he's an idiot. That such a usability no-no.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Jeremy Bunton [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 09, 2003 3:07 PM
To: CF-Talk
Subject: submit cfform without submit button

Hello all,

I know this isn't strictly a CF issue but I am using CF at the momeny so
here we go.
I have a simple form with two text fields one for username and one for
password. Here is the code.












My boss wants there to NOT be a submit button showing on the screen,
i.e. he
just wants people to type in their username and password and then hit
enter
to login. How would I go about this. I thought of just hiding the submit
in
a  but that didn't do it. It needs to work in NN4.7 up and IE 5 up.
Any
help would be good.


Jeremy




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: submit cfform without submit button

2003-01-09 Thread Owens, Howard
So many times ... clients or bosses have asked me for things that I knew was
wrong, but I've given it to them ... and then ... they don't like it.

Sometimes battles are won by not fighting them.

H.


> -Original Message-
> From: Jeremy Bunton [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, January 09, 2003 12:43 PM
> To:   CF-Talk
> Subject:  RE: submit cfform without submit button
> 
> I strongly agree, I have made that point, and he didn't think it was a big
> deal, but we'll see what he says now that I have it working. I am sure he
> will change his mind.
> 
> Jeremy
> 
> -Original Message-
> From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 09, 2003 3:33 PM
> To: CF-Talk
> Subject: RE: submit cfform without submit button
> 
> 
> Tell your boss I think he's an idiot. That such a usability no-no.
> 
> Adam Wayne Lehman
> Web Systems Developer
> Johns Hopkins Bloomberg School of Public Health
> Distance Education Division
> 
> 
> -Original Message-
> From: Jeremy Bunton [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 09, 2003 3:07 PM
> To: CF-Talk
> Subject: submit cfform without submit button
> 
> Hello all,
> 
> I know this isn't strictly a CF issue but I am using CF at the momeny so
> here we go.
> I have a simple form with two text fields one for username and one for
> password. Here is the code.
> 
> 
>  enctype="multipart/form-data">
>  type="text" size="14" maxlength="50" message="Username is Required">
> 
>  name="passwordjay"
> type="password" size="14" maxlength="50" message="Username is Required">
> 
> 
> 
> 
> 
> 
> My boss wants there to NOT be a submit button showing on the screen,
> i.e. he
> just wants people to type in their username and password and then hit
> enter
> to login. How would I go about this. I thought of just hiding the submit
> in
> a  but that didn't do it. It needs to work in NN4.7 up and IE 5 up.
> Any
> help would be good.
> 
> 
> Jeremy
> 
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: submit cfform without submit button

2003-01-09 Thread Owens, Howard
Wait for the user complaints to start rolling in.  Or for him to ask "we
don't see to be getting much usage out of that form ..." 

H.


> -Original Message-
> From: Jeremy Bunton [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, January 09, 2003 1:51 PM
> To:   CF-Talk
> Subject:  RE: submit cfform without submit button
> 
> I showed it to him without a submit button and he loved it. "Just what I
> wanted" *shrugs* what can ya do.
> 
> 
> Jeremy
> -Original Message-
> From: Owens, Howard [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 09, 2003 4:14 PM
> To: CF-Talk
> Subject: RE: submit cfform without submit button
> 
> 
> So many times ... clients or bosses have asked me for things that I knew
> was
> wrong, but I've given it to them ... and then ... they don't like it.
> 
> Sometimes battles are won by not fighting them.
> 
> H.
> 
> 
> > -Original Message-
> > From:       Jeremy Bunton [SMTP:[EMAIL PROTECTED]]
> > Sent:   Thursday, January 09, 2003 12:43 PM
> > To: CF-Talk
> > Subject:RE: submit cfform without submit button
> >
> > I strongly agree, I have made that point, and he didn't think it was a
> big
> > deal, but we'll see what he says now that I have it working. I am sure
> he
> > will change his mind.
> >
> > Jeremy
> >
> > -Original Message-
> > From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, January 09, 2003 3:33 PM
> > To: CF-Talk
> > Subject: RE: submit cfform without submit button
> >
> >
> > Tell your boss I think he's an idiot. That such a usability no-no.
> >
> > Adam Wayne Lehman
> > Web Systems Developer
> > Johns Hopkins Bloomberg School of Public Health
> > Distance Education Division
> >
> >
> > -Original Message-
> > From: Jeremy Bunton [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, January 09, 2003 3:07 PM
> > To: CF-Talk
> > Subject: submit cfform without submit button
> >
> > Hello all,
> >
> > I know this isn't strictly a CF issue but I am using CF at the momeny so
> > here we go.
> > I have a simple form with two text fields one for username and one for
> > password. Here is the code.
> >
> >
> >  > enctype="multipart/form-data">
> >  > type="text" size="14" maxlength="50" message="Username is Required">
> >
> >  > name="passwordjay"
> > type="password" size="14" maxlength="50" message="Username is Required">
> >
> > 
> >
> > 
> >
> >
> > My boss wants there to NOT be a submit button showing on the screen,
> > i.e. he
> > just wants people to type in their username and password and then hit
> > enter
> > to login. How would I go about this. I thought of just hiding the submit
> > in
> > a  but that didn't do it. It needs to work in NN4.7 up and IE 5 up.
> > Any
> > help would be good.
> >
> >
> > Jeremy
> >
> >
> >
> >
> >
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: submit cfform without submit button

2003-01-09 Thread Jeremy Bunton
I showed it to him without a submit button and he loved it. "Just what I
wanted" *shrugs* what can ya do.


Jeremy
-Original Message-
From: Owens, Howard [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 09, 2003 4:14 PM
To: CF-Talk
Subject: RE: submit cfform without submit button


So many times ... clients or bosses have asked me for things that I knew was
wrong, but I've given it to them ... and then ... they don't like it.

Sometimes battles are won by not fighting them.

H.


> -Original Message-
> From: Jeremy Bunton [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, January 09, 2003 12:43 PM
> To:   CF-Talk
> Subject:      RE: submit cfform without submit button
>
> I strongly agree, I have made that point, and he didn't think it was a big
> deal, but we'll see what he says now that I have it working. I am sure he
> will change his mind.
>
> Jeremy
>
> -Original Message-
> From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 09, 2003 3:33 PM
> To: CF-Talk
> Subject: RE: submit cfform without submit button
>
>
> Tell your boss I think he's an idiot. That such a usability no-no.
>
> Adam Wayne Lehman
> Web Systems Developer
> Johns Hopkins Bloomberg School of Public Health
> Distance Education Division
>
>
> -Original Message-
> From: Jeremy Bunton [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 09, 2003 3:07 PM
> To: CF-Talk
> Subject: submit cfform without submit button
>
> Hello all,
>
> I know this isn't strictly a CF issue but I am using CF at the momeny so
> here we go.
> I have a simple form with two text fields one for username and one for
> password. Here is the code.
>
>
>  enctype="multipart/form-data">
>  type="text" size="14" maxlength="50" message="Username is Required">
>
>  name="passwordjay"
> type="password" size="14" maxlength="50" message="Username is Required">
>
> 
>
> 
>
>
> My boss wants there to NOT be a submit button showing on the screen,
> i.e. he
> just wants people to type in their username and password and then hit
> enter
> to login. How would I go about this. I thought of just hiding the submit
> in
> a  but that didn't do it. It needs to work in NN4.7 up and IE 5 up.
> Any
> help would be good.
>
>
> Jeremy
>
>
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: submit cfform without submit button

2003-01-09 Thread Les Mizzell
> Wait for the user complaints to start rolling in.


Dear Bob,

We've been trying to order the $1745.32 widget off your website for the last
three weeks, but there's no way to submit the order form once we fill it
out.  Bruce found another one for us at HQ the other day, so we no longer
need the one we've been trying to purchase, but we thought you should know
about the ordering problem, just in case somebody else wishes to order from
you.

Yours,

Almost a customer

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4