Jill,
combobox (Select according to HTML) doesn't have a onDblClick event. In fact
do you ever get a chance to double-click inside a combobox? I mean, the
system acts on you first click without waiting for a second one.
You can capture onChange event instead.
You can put ExtraHtml property for the comboBox:
onChange = callSubmit()
And have the function call Submit():
function callSubmit() {
document.formName.action = "<whatever>";
document.formName.submit();
}
If you don't need to set the action, that is, if you don't want to process
the onWebEvent of any button, you can simple put the ExtraHtml for the combo
as:
>>>onChange=submit();<<<
Aby
> -----Original Message-----
> From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]]
> Sent: Friday, June 11, 1999 11:54 AM
> To: [EMAIL PROTECTED]
> Subject: [ND] Double-Click ComboBox Selection?
>
> Hello,
>
> Is there a way to allow users to double-click their combobox selection to
> go
> to the next ND page rather than highlight their selection and click a
> button?
> If so, do you have sample code?
>
> Thanks!
>
> Jill
> _________________________________________________________________________
>
> For help in using, subscribing, and unsubscribing to the discussion
> forums, please go to: http://www.netdynamics.com/support/visitdevfor.html
>
> For dire need help, email: [EMAIL PROTECTED]
_________________________________________________________________________
For help in using, subscribing, and unsubscribing to the discussion
forums, please go to: http://www.netdynamics.com/support/visitdevfor.html
For dire need help, email: [EMAIL PROTECTED]