Home > Contents > Index >
asset:siteparent
Queries the SitePlanTree table and then loads the parent page of the specified page asset into memory as an object.
Syntax
<asset:siteparent name="pageName
" outname="parentPageName
"/>Description
This tag queries the SitePlanTree table and then loads as an object the parent page of the specified page asset. It acts like asset:load .
Use this tag to display information about the hierarchical position of the current page or to create a link to the current page's parent page. This tag determines the parent page and then loads the parent page in one database query.
Parameters
name
(required)- Input. Name of the page asset whose parent page you want to load. This page asset must be loaded and assigned a name before you can pass its name to this tag. (See
asset:load
.)
outname
(required)- Input. Name to assign to the parent page object.
Error Numbers
The possible values of
errno
include:
Value Description -112 No parent exists. -10002 There is a missing method for the implementing class. -10003 The method could not be invoked successfully. -10004 A required parameter is missing. -10005 The requested object is not in the object pool (is not loaded into memory). -10007 The version of the object is not valid. -10008 The node ID of the object is not valid. -10009 More than one object met the specified criteria. -12007 The specified value is not valid.Example
This code loads a page asset, loads its parent page, extracts the name of the parent page asset, and then displays the name:
<asset:load name="myPage" type="Page" objectid=<ics:getvar name="grandparent:name"/> <asset:siteparent name="myPage" outname="grandparent"/> <asset:get name="grandparent" field="name" output="grandparent:name"/> Up one level to <ics:getvar name="grandparent:name"/>.See Also
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.