Home > Contents > Index >
Executes the query within a ContentQuery asset and returns all assets that match as an IList object
<searchstate:contentquerysearch name="resultname
" assetname="cqassetname
" [maxresults="listname
"] [sortfield="fieldname
"] [sortorder="asc|desc
"]/>
name
(required)assetname
(required)maxresults
(optional)sortfield
(optional)sortorder
(optional)The contentquerysearch tag executes the search and loads the results of the query into an IList (as specified by the name) into the ICS context. This list can then be iterated through by the ics tags.
Executes the query stored within the ContentQuery named CQ1
, then iterates over the results and displays the name field.
<searchstate:contentquerysearch name="searchresults" assetname="CQ1" /> <ics:listloop listname="searchresults"> <ics:listget listname="searchresults" fieldname="name" output="myname"/> The Name : <%=ics.GetVar("myname")%> </ics:listloop>
This code loads the Content Query Asset and executes the search. The results are loaded into an IList named searchresults
the ICS context which can then be iterated to display the results.
<asset:load name='currentAsset' type='<%=ics.GetVar("c")%>' objectid='<%=ics.GetVar("cid")%>' /> <searchstate:contentquerysearch name="searchresults" assetname="currentAsset" maxresults='15' sortfield='name' sortorder='asc'/> <div style='margin-top:1em; width:100%;'> <ics:listloop listname="searchresults"> <ics:listget listname="searchresults" fieldname="name" output="aname"/> <ics:listget listname="searchresults" fieldname="id" output="aid"/> <ics:listget listname="searchresults" fieldname="AssetType" output="atype"/> <div> <insite:calltemplate tname="MyDetailTemplate" c='<%=ics.GetVar("atype")%>' cid='<%=ics.GetVar("aid")%>'/> </div> </ics:listloop> </div>
asset:load
ics:listloop
ics:listget
insite:calltemplate
Home > | Contents > | Index > | ||
![]() |
Oracle JSP Tag Reference |