Link to home
Start Free TrialLog in
Avatar of toblo
toblo

asked on

Displaying search-results in an embedded view

Hiya!

I want to make a form that allows me to search a view, and display the results directly in an embedded view on the form..

I don't think I'll have any problems with the search,  but I don't know how to decide over the contents of the embedded view..

How do I 'get hold' of the embedded view (from LotusScript in the form)?
How can I manipulate its contents?

Regards
/Torbjörn Josefsson
Avatar of Arunkumar
Arunkumar

Hi toblo !

Why do you want to get hold of the embeddedview.

You search for the documents put them in a document collection and process the docuement collection so that it has a special field with a value.

Now your embedded view will have the normal selection condition plus this field content.

Only the documents with this special field will show up in the view.

What else you need ?

-Arun
ASKER CERTIFIED SOLUTION
Avatar of dalehend
dalehend

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of toblo

ASKER

Hmm.. I don't quite get it..

-The reason I wanted to get hold of the embedded view was that I thought there was some direct way of manipulating its contents that way.

Ok.. I've tried adding a field to each of the documents I've got in the document collection I want to display:

Set doc = dc.GetFirstDocument
While Not(doc Is Nothing)
      Set item = doc.AppendItemValue("Searchfield", "1")            
      Set doc = dc.GetNextDocument(doc)
Wend

Doesn't seem to affect the contents of the view, though.. I think I need more details - I'm pretty new to notes

Avatar of toblo

ASKER

Well.. Folders are nice :)