Application Framework Reference

Module API

getResultURL()

The getResultURL() method gets the URI query string representing the path to the calling module controller, which contains module content to be rendered.

Note: This method is called by getResults().

Synopsis

uri = getResultURL( params )

Parameters

params

Object

result params to add to the resultURL query string.

Return Value

String

URI and query string representing the path to the calling module controller.

Example

var resultUrl = this.getResultURL(params);
if (!resultUrl) {
    this.logger.warn("getResultsURL() appears to be unimplemented or returning null for this instance.");
}

this.getResultsXHRObject = $.ajax({
    type: "GET",
    cache: ($.browser.msie ? false : true),
    url: resultUrl,
    ... elided ...
});
 

See Also

getResults()