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().
uri = getResultURL( params )
|
params |
Object |
result params to add to the resultURL query string. |
|
String |
URI and query string representing the path to the calling module controller. |
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 ...
});