Parent (NotesDbDirectory - JavaScript)

Read only. The Domino® session that contains a NotesDbDirectory object.

Defined in

NotesDbDirectory

Syntax

getParent() : NotesSession

Examples

This computed field displays the parent user name when a database directory is instantiated elsewhere on the page.
if (sessionScope.dbdir != null) {
	var dbdir:NotesDbDirectory = sessionScope.dbdir;
	return dbdir.getParent().getUserName();
}