Please help me!I have a code in LotusScript which does not work on web.
Here is the code:
Dim ws As New notesuiworkspace
Dim s As New notessession
Dim uidoc As notesuidocument
Dim doc As notesdocument
Dim col As Notesdocumentcollection
Dim db As Notesdatabase
Dim item As NotesItem
Dim itemA As NotesItem
Dim unid As String
Set db=s.currentdatabase
Set uidoc=ws.currentdocument
strApp=uidoc.fieldgettext("ApplicationName")
Set doc=uidoc.document
server$=db.server
dbname$=db.filepath
Set col = ws.PickListCollection(PICKLIST_CUSTOM, True,server$, dbname$,"SelectUseCase" , "Auswahl !","Wählen Sie bitte Dokument aus!", strApp)
I wrote javascript:
var myurl=…UseCase?openform;
UseCase is a form with embed.view.
I try with window.open(myurl,“”,“width=400 height=400”)
PickList doesn’t work on web. Any user interacting @functions or script doesn’t work. use print statement in script or javascript. see the notes help for futher assistance.