Home > Contents > Index >
proxy:tojson
Streams all store items as json data.
Syntax
<proxy:tojson store="name of the data store" total="total number of items"/>Parameters
store (required)
- A string designating the data store previously created using
proxy:createstore
.
total (required)
- The total number of items in the store.
Description
This tag is meant to be used in conjunction with theproxy:createstore
andproxy:addstoreitem
tags.
It streams all store items added withproxy:addstoreitem
as json data consumable by dojo widgets such as the data grid widget.Note
The tag attributetotal
represents the overall number of items that this store can return, which may not match the number of items added throughproxy:addstoreitem
, since the widget associated to the store might be paginating through the store items.Example
The following example assumes that:
- a store named "assets" has previously been created using
proxy:createstore
.- the total number of items available in an ICS variable called "totalNb"
<%-- streams all items in the store as json --%> <proxy:tojson store="assets" total='<%=ics.getvar("totalnb")%>' /> %=ics.getvar("totalnb")%>See Also
proxy:createstore
proxy:addstoreitem
proxy:register
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.