/dev/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/dev/trunk

« back to all changes in this revision

Viewing changes to js/adei.js

  • Committer: Suren A. Chilingaryan
  • Date: 2010-08-13 14:18:27 UTC
  • Revision ID: csa@dside.dyndns.org-20100813141827-u3o97425ppvd5g7y
Revert back to SetConfiguration from SetCustomProperties while handling certain property in search; trully support HTML content in description field within search results; support execution in XMLModule; support for setup-specific javascript code; KATRIN update

Show diffs side-by-side

added added

removed removed

Lines of Context:
408
408
    if (this.popup) this.popup.OpenControl(name);
409
409
}
410
410
 
411
 
ADEI.prototype.UpdateDIV = function(div, xmlurl, xslt) {
412
 
    this.xslpool.Load(xslt, xmlurl, false, div);
 
411
ADEI.prototype.UpdateDIV = function(div, xmlurl, xslt, jsexec) {
 
412
    if ((typeof jsexec != "undefined")&&(jsexec)) {
 
413
        this.xslpool.Load(xslt, xmlurl, this.xslpool.HTMLReplaceAndExecuteCallback, div);
 
414
    } else {
 
415
        this.xslpool.Load(xslt, xmlurl, false, div);
 
416
    }
413
417
}
414
418
 
415
419
ADEI.prototype.ReportError = function(msg, module_name, module) {