ListInDbCatalog (NotesDatabase - JavaScript™)
Read-write. Indicates whether a database appears in database catalogs.
Defined in
NotesDatabaseSyntax
getListInDbCatalog() : boolean
setListInDbCatalog(flag:boolean) : void
Legal values
Legal value | Description |
---|---|
true |
if the database appears in database catalogs |
false |
if the database does not appear in database catalogs |
Usage
This property corresponds to "List in Database Catalog" in the database design properties of the UI.Categories determines the categories under which the database is listed.
The database must be open to use this property.
Examples
This button toggles whether the current database is listed in a database catalog.database.setListInDbCatalog(!database.getListInDbCatalog());
requestScope.status = "ListInDbCatalog = " + database.getListInDbCatalog();