Home > Contents > Index >
listobject:create
Creates a new list with specific columns but no rows.
Syntax
<listobject:create name="listname
" columns="col1,col2,...,coln
"/>Parameters
name
(required)- Input and output parameter. As input, name of the list object to create on output as an empty list with the specified columns.
columns
(required)- Input parameter. A string consisting of the column names separated by commas.
Example
<!-- Create a list for a call to assetset:getassetlist --> <listobject:create name="mylist" columns="attributename,direction"/> <listobject:addrow name="mylist">
<listobject:argument name="attributename" value="name"/> <listobject:argument name="direction" value="descending"/></listobject:addrow> <listobject:addrow name="mylist">
<listobject:argument name="attributename" value="price"/> <listobject:argument name="direction" value="descending"/></listobject:addrow> <listobject:tolist name="mylist" listvarname="listout"/>
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.