Classes


Class actuate.data.ReportContent

Handles downloaded content.
Member of: actuate.data.

Class Summary
Constructor Attributes Constructor Name and Description
 
Constructs an object that contains downloaded report content.
Method Summary
Method Attributes Method Name and Description
 
Returns the text in the downloaded content.
Class Detail
actuate.data.ReportContent(data)
Constructs an object that contains downloaded report content.
Parameters:
{String} data
Content text.
Method Detail
{String} getTextContent()
Returns the text in the downloaded content. To make a callback function that prints back the first line of text from some downloaded content back onto the page, use code similar to the following:
	function callback(data1){
		var rcontent = data1.ReportContent.getTextContent( );
		var contentArray = rcontent.split("\n");
		var items = contentArray.length
		document.write("<P>\n")
		document.write(listItems.arguments[o] + "\n</P>")
	}
Returns:
{String} The text in the downloaded content.

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