Properties Methods Events Config Options Direct Link
Observable
  DataProxy
    ScriptTagProxy

Class CQ.Ext.data.ScriptTagProxy

Package:CQ.Ext.data
Class:ScriptTagProxy
Extends:CQ.Ext.data.DataProxy
Clientlib:cq.widgets
An implementation of CQ.Ext.data.DataProxy that reads a data object from a URL which may be in a domain other than the originating domain of the running page.

Note that if you are retrieving data from a page that is in a domain that is NOT the same as the originating domain of the running page, you must use this class, rather than HttpProxy.

The content passed back from a server resource requested by a ScriptTagProxy must be executable JavaScript source code because it is used as the source inside a <script> tag.

In order for the browser to process the returned data, the server must wrap the data object with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy. Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy depending on whether the callback name was passed:

boolean scriptTag = false;
String cb = request.getParameter("callback");
if (cb != null) {
    scriptTag = true;
    response.setContentType("text/javascript");
} else {
    response.setContentType("application/x-json");
}
Writer out = response.getWriter();
if (scriptTag) {
    out.write(cb + "(");
}
out.print(dataBlock.toJsonString());
if (scriptTag) {
    out.write(");");
}

Below is a PHP example to do the same thing:

$callback = $_REQUEST['callback'];

// Create the output object.
$output = array('a' => 'Apple', 'b' => 'Banana');

//start output
if ($callback) {
    header('Content-Type: text/javascript');
    echo $callback . '(' . json_encode($output) . ');';
} else {
    header('Content-Type: application/x-json');
    echo json_encode($output);
}

Below is the ASP.Net code to do the same thing:

String jsonString = "{success: true}";
String cb = Request.Params.Get("callback");
String responseString = "";
if (!String.IsNullOrEmpty(cb)) {
    responseString = cb + "(" + jsonString + ")";
} else {
    responseString = jsonString;
}
Response.Write(responseString);

Config Options

Config Options Defined By
  nocache : Boolean
(optional) Defaults to true. Disable caching by adding a unique parameter name to the request.
ScriptTagProxy
  timeout : Number
(optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
ScriptTagProxy
  url : String
The URL from which to request the data object.
ScriptTagProxy

Public Properties

Property Defined By
  load : Object
Deprecated.
Deprecated load method using old method signature. See doRequest for preferred method.
DataProxy

Public Methods

Method Defined By

Public Events

Event Defined By