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 an object that contains downloaded report content.
<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 specifying the conditions for sorting data.
Namespace Detail
actuate.data
Contains the data-related classes.
Field Detail
<static> {actuate.data.Filter} Filter
Constructs a filter object. The following example selects all of the rows having country fields that match any value in a list of countries:
	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 an object that contains downloaded report content.

<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 specifying the conditions for sorting data.

Documentation generated by JsDoc Toolkit 2.0.1 on Tue Jan 06 2015 04:13:44 GMT-0800 (PST)