RE: Action Events triggered by JavaScript

2002-04-26 Thread Weaver, Scott
> location.href="$link.setPage("GenericQueue.vm").setAction("Gen > ericQueueR > ecords")?eventSubmit_doSave=dummy¶m1¶m2="+recordId+air > craftRegn; "param1" has no value. That is probably why it is not getting passed. Scott > -Original Message- > From: Amanda Edwards [mailto:[EMA

RE: Action Events triggered by JavaScript

2002-04-26 Thread James Cooper
Try something like this function goInsert() { window.open("$link.setPage("admin,user,UserForm.vm").addQueryData("mode","in sert")","_parent"); } -Original Message- From: Amanda Edwards [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 13:14 To: [EMAIL PROTECTED] S

RE: Action Events triggered by JavaScript

2001-12-05 Thread Mooslechner Martin
So I can use both versions depending on whether I need the values or not... ciao, Martin -Original Message- From: Daniel Moldovan [mailto:[EMAIL PROTECTED]] Sent: Mittwoch, 05. Dezember 2001 09:28 To: 'Turbine Users List' Subject: RE: Action Events triggered by JavaScri

RE: Action Events triggered by JavaScript

2001-12-05 Thread Gareth Coltman
Just add the event as a name/value pair in the query data. The value is unimportant. IE: setAction(myaction).addQueryData("eventSubmit_doSomething", 0) > -Original Message- > From: Mooslechner Martin [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, December 05, 2001 08:12 > To: '[EMAIL PRO

RE: Action Events triggered by JavaScript

2001-12-05 Thread Daniel Moldovan
You can use the "onChange" method of the tag like this: opt1 opt2 Than you write your JS function like this: function myOnChange() { var selIndex = document.YourForm.one.selectedIndex; var selValue = document.YourForm.one.options[selIndex]; //of course you do all this