Single category view in Xpages

Does anyone know how to create a single category view on an Xpage. I am admittedly brand new at using Xpages, but have been through several tutorials. Some help would be appreciated.

Subject: Re: Single category view in Xpages

You’ll need to use categoryFilter.

Go to the “All Properties” of the View, expand data, and expand the next data. categoryFilter should be listed next. Enter some SSJS to compute the category, such as a sessionScope variable or getComponent(fieldname).getValue() to access a field on the XPage.

Subject: Re: Single category view in Xpages

I did it by going to the same place, using SSJS to set keys and keysExactMatch to true, but categoryFilter is probably the better way of doing it. keys and keysExactMatch jumped out as the equivalent of a LotusScript getAllEntriesByKey

Subject: Thank you - I will give it a shot!