I have a form with combobox on it. For populating the combobox I use @dbcolumn. On the “onchange” event of the combobox I assign selected value to the second field on the form. It works perfectly on the web, but it doesn’t work on R6 client. (I use common javascript). It refreshes only when I change focus to another field.
Is there any solution to make it work?
Field.focus() doesn’t work on R6 client.
Subject: Refresh fields on R6 client using javascript
That is just the way onChange works in the client.
Did you select the option
“Run exiting/OnChange events after value change” in the 3rd tab of the combobox properties?
see my R5 cheat here (since the option above is not available):
http://www-10.lotus.com/ldd/46dom.nsf/55c38d716d632d9b8525689b005ba1c0/3c7a22ecc8953fc285256e5800638b08?OpenDocument
Subject: RE: Refresh fields on R6 client using javascript
It works!!Thank you very much!!