Parent (NotesViewEntryCollection - JavaScript)

Read-only. The view that contains a view entry collection.

Defined in

NotesViewEntryCollection

Syntax

getParent() : NotesView

Examples

This computed field displays the name of the parent view of a view entry collection defined elsewhere on the page.
if (requestScope.vec != null) {
	var view:NotesView = requestScope.vec.getParent();
	return view.getName();
}