Home > Contents > Index >
Streams additional editing widgets allowing content contributors to edit multivalued asset fields in a dedicated popup window
<insite:list field="asset field name" [assetid="asset id"] [assettype="asset type"] [mode="text|html"] [editor="type of editor"] [params="editor parameters"] [countervar="name of variable containing current list index"]> [<insite:edit ... /> <insite:edit ... /> ...] </insite:list>
field (required)
assetid (optional)
cid
variable, i.e. the value returned by ics.GetVar("cid")
.assettype (optional)
c
variable, i.e. the value returned by ics.GetVar("c")
.mode (optional)
mode
attribute of insite:edit.editor (optional)
editor
attribute of insite:edit.params (optional)
params
attribute of insite:edit.countervar (optional)
Alternatively, the index
attribute of each nested insite:edit tag can be used for the same purpose.
insite:list
typically wraps an area rendering multivalued field values. It can be used:
insite:edit
tags, allowing nested value to be edited in-contextinsite:edit
tags. This is especially useful when field values are not directly editable on the web page. For instance, the field values could represent a list of addresses rendered on an interactive map.In editing mode, the tag generates a toolbar, displayed when the content contributor hovers over the wrapped area. This toolbar allows contributors to access a dedicated popup window showing all field values. In this popup, contributors can edit field values, but also add, remove and reorder them.
In any other rendering mode, this tag does not generate any markup.
insite:edit
tags inherit the following attribute values set in their parent insite:list
tag: editor
, params
, mode
, assetid
, assettype
, field
.insite:slotlist
for more details on editing multivalued fields containing asset references.The following example enables editing the multivalued teaserText
field of the asset determined by the c
and cid
variables:
<%-- - The code sample assumes the values of the field to be available in a list called "teaserList" - with a single column named "value" (such as lists returned by tags such as assetset:getattributevalues). --%> <insite:list field="teaserText" editor="ckeditor" > <div class="teasers"> <ics:listloop listname="teaserList"> <%--Note that the "editor" attribute is passed to each nested insite:edit tag --%> <insite:edit list="teaserList" column="value" /> </ics:listloop> </div> </insite:list>For more information about editing assets in web mode, see "Coding Templates for In-Context Content Editing" in the Sites Developer's Guide.
Home > | Contents > | Index > | ||
![]() |
Oracle JSP Tag Reference |