Classes


Namespace actuate.data

Contains the data-related classes.
Member of: actuate.

Namespace Summary
Constructor Attributes Constructor Name and Description
 
Contains the data-related classes.
Field Summary
Field Attributes Field Name and Description
<static>  
Constructs a filter object.
<static>  
Constructs a ReportContent object.
<static>  
Constructs a Request object that other classes use to retrieve data.
<static>  
There is no public constructor for ResultSet.
<static>  
Constructs a Sorter object.
Namespace Detail
actuate.data
Contains the data-related classes.
Field Detail
<static> {actuate.data.Filter} Filter
Constructs a filter object. To select all of the rows matching a list of countries in their country fields, use code similar to the following:
	var filter = new actuate.data.Filter("COUNTRY", actuate.data.Filter.IN,["Canada" , "USA", "UK", "Australia"]);
To create a filter to display only entries with a CITY value of NYC, use the following code:
	var cityfilter = new actuate.data.Filter("CITY", actuate.data.Filter.EQ, "NYC");

<static> {actuate.data.ReportContent} ReportContent
Constructs a ReportContent object.

<static> {actuate.data.Request} Request
Constructs a Request object that other classes use to retrieve data.

<static> {actuate.data.ResultSet} ResultSet
There is no public constructor for ResultSet. The actuate.DataService#downloadResultSet and actuate.Viewer#downloadResultSet functions instantiate the ResultSet object. Set the reference to the ResultSet object in the callback function. For example, when the result set is used as the input parameter for the callback function, result becomes the label for the ResultSet, as shown below:
	viewer.downloadResultSet(request, parseRS)
	function parseRS(resultset){
		// do something with resultset
	}
See:
actuate.DataService#downloadResultSet
actuate.Viewer#downloadResultSet

<static> {actuate.data.Sorter} Sorter
Constructs a Sorter object.

Documentation generated by JsDoc Toolkit 2.0.1 on Tue Jan 29 2013 05:44:21 GMT-0800 (PST)