Lookup in web

Hi Team , i have a requirements has follows.

there are two drop down in my web page

first drop down is the fields that are there in form

ex :dropdown1

manager

developer

approver

date

project code.

now when the user selects manager then i need to get all the manager names into the second drop down . if he select project code all values of peoject code has to be retrived.

i have created one view with each column of it.the view contains 5 columns and each are having data . but how to get the value “on change” of first. please help me out

thanks

sai krishna

Subject: lookup in web

Hi Sai,

There is a checkbox option in the second tab of first dropdown field properties “Refresh fields on keyword change” which should do the job.

Alternatively, you could use 4 lines of LotusScript on the exiting event of the field to refresh the document:

Sub Exiting(Source As Field)

Dim workspace As New NotesUIWorkspace

Dim uidoc As NotesUIDocument

Set uidoc = workspace.CurrentDocument

Call uidoc.Refresh

End Sub