Home > Contents > Index >  
Template Tags TOC   |    Alpha TOC   |    Tag Family TOC   |    Purpose TOC   |    Annotated TOC   |    Index 

 

asset:adddimension

Add a dimension to the currently loaded asset

Syntax

<asset:adddimension
        name="name of loaded asset"
       [dimensionid="id of dimension to add"]
       [dimensionname="name of dimension to add"]
    />

Attributes

name (required)
The name of the loaded asset to which the dimension specified will be added.
dimensionid (optional)
The id of the dimension asset that is to be added to the current asset. The dimension asset need not be loaded. Either dimensionid or dimensionname must be specified.
dimensionname (optional)
The name of a dimension asset that will be added to the current asset. The dimension asset need not be loaded. Either dimensionid or dimensionname must be specified.

Description

Given an asset that is currently loaded, this tag allows users to add a dimension to the asset. Once the dimension has been added, the asset must be re-saved if the change is to persist.

Error Numbers

The possible values of errno include:

Value
Description
-10005
The requested object is not in the object pool (is not loaded into memory).

Example

The following example demonstrates how to load an asset and add a dimension with the ID of 42 to it.

    <asset:load name="myasset" type="Article" assetid="999">
    <asset:adddimension name="myasset" dimensionid="42">
    <asset:save name="myasset">

The following example demonstrates how to load an asset and adds a locale named en_US to it.

    <asset:load name="myasset" type="Article" assetid="999">
    <asset:adddimension name="myasset" dimensionname="en_US">
    <asset:save name="myasset">

See Also

asset:save

asset:addlocale

   Home > Contents > Index >

Oracle JSP Tag Reference
Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.