Dialog List in Web

Hi,

I am having problem in getting the value of the selected item in my dialog list…

Here is the scenario…I have a formA which opens another window (formB)…formA passes some values to formB…one of these values is the value of a multivalue field…in formB these values are displayed in a dialog list…i need to pass this selected value again into another formC…the problem is that i can not get the value of the selected item using javascript…

I hope somebody can help me out…thanks

Florisa

Subject: Dialog List in Web

I’ve never used javascript in Notes, but if this is for a browser, the following should work:f = document.forms[0];

f.anyField.value = f.anyField[f.anyField.selectedIndex].value

HTH,Simeon