PickList on web

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”)

but i don’t get any document to select.

How can i introduce the category field?

Subject: PickList on web

You can try using Ext.nd for your client-side browser development. We support picklists.

To see it in action open this demo:

http://www.openntf.org/extnd/demo.nsf

And on the left click to expand “demos” and then click “picklist demo”

To get Ext.nd download it from here:

http://extjs.com/forum/showthread.php?t=6829

Ext.nd is based off of Ext and more info on it can be found here:

We also have a dedicated forum for Ext.nd

http://extjs.com/forum/forumdisplay.php?f=15

Good luck!

Jack

Subject: PickList on web

Hi Joseph,

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.

cheers

RAJ

Subject: PickList on web

Thank you for your advice.But window.open(myurl,“”,"…)cann’t show the embedded view (with show Single category) with documents?

Subject: RE: PickList on web

make the embedded view show single category and then call the view using the window.opener