Home > Contents > Index >
listobject:tolist
Converts a list object to a resultset list.
Syntax
<listobject:tolist name="listname
" listvarname="varname
"/>Parameters
name
(required)- Input parameter. Name of the list object to convert.
listvarname
(required)- Input and output parameter. As input, name of the list variable into which to write the resultset list on output.
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.