Link to home
Start Free TrialLog in
Avatar of mvdijk
mvdijk

asked on

Auto generating a list of documents on the web

Hi,

Im trying to solve the following problem:

I have a form called "news", I have a view called "news" and the view is to be displayed in a browser. This works perfectly with only one problem. Domino puts all kind of garbage in like a next,previous and search button.

So i had the plan to create the following:

I have a link on my domino website which opens the view. What i would like to have is that when i click that link i could generate a list of the "news" documents with lotus script. This way it should be possible to customize the list so it's displayed the way i want it on the web.

I hope you understand my question

Kind regards,

Mathijs
ASKER CERTIFIED SOLUTION
Avatar of sloeber
sloeber
Flag of Belgium image

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 ghassan99
ghassan99

There are 2 ways to achieve this:
Create a form and embed the view in it.  If you go create-embedded element-view menu item you will be able to choose the view u want to add to the form.  Then you can add any extra graphics or links to surround the view in any way.
You can then give this form any name and access it as usual.
If  you want all views to open in a certain way, or a specific view to open in a different look, create the form with one of these names:
$$ViewTemplateDefault
$$ViewTemplate for view_name
The first name is for all views, and if you want it for a specific view, replace 'view_name' with the actual name of you view.  Now inside this form you either embed the view as I wrote above, or create a field called '$$ViewBody', and place it in the form where you want the view to show.
You can use formulas such as this for links to next & previuos pages, etc.
@DbCommand("Domino"; "ViewPreviousPage")
@DbCommand("Domino"; "ViewNextPage")

-Gus


Oops, sorry I think we posted at the same time.

-Gus
Avatar of mvdijk

ASKER

You were 6 minutes earlier than ghassan so here you are!

It workes fine!
Thanx
For the points
Sorry, gus
The next one is for you
;-)

Greets,
Sloeber
No its ok, dont worry, it happens in EE.  Its good that Mathijs got it working.

Regards,
-Gus