|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.Domino FrameworkBlog Authors: Peter Presnell |
Modifying View Selection Formulae
Peter Presnell
|
|
Tags: 
views
.dominoframework
reflection
|
Comments (1)
|
A tag is a keyword that is used to categorize an entry. To view the entries with a particular tag, click a tag name or enter a tag in the box.
The tag cloud indicates the frequency of tag use. Popular tags appear darkest. The slider control adjusts how many tags are displayed in the tag cloud.
1 Randy Davison Permalink We use a view action button which builds the desired selection formula in a string (called "formula") based on responses to ws.Prompt(s). We then use the view.SelectionFormula property like
so:
Set uiview = ws.CurrentView
Set view = uiview.View
view.SelectionFormula = formula
We just tell the few users who are able to change the selection
criteria to close and reopen the view and voila!
Hope this helps.